Merge pull request #1709 from progrium/1614_mh-wildcard-domains

fix Must specify DOMAIN error over ssh (supercedes #1691)
This commit is contained in:
Michael Hobbs
2015-11-19 14:10:20 -05:00
3 changed files with 14 additions and 1 deletions

View File

@@ -65,7 +65,7 @@ case "$1" in
exit 1
fi
if [[ $(egrep ^"$3"$ "$DOKKU_ROOT/$APP/VHOST" > /dev/null 2>&1; echo $?) -eq 0 ]]; then
if [[ $(egrep -w "^{$3}$" "$DOKKU_ROOT/$APP/VHOST" > /dev/null 2>&1; echo $?) -eq 0 ]]; then
echo "$3 is already defined for $APP"
exit 1
fi