fix Must specify DOMAIN error over ssh

This commit is contained in:
Justin Clark
2015-11-13 17:53:56 -08:00
parent 6af8811912
commit 59912d43f1
2 changed files with 3 additions and 1 deletions

2
dokku
View File

@@ -60,7 +60,9 @@ if [[ -n "$SSH_ORIGINAL_COMMAND" ]]; then
xargs $0 <<<$SSH_ORIGINAL_COMMAND
exit $?
else
set -f
$0 $SSH_ORIGINAL_COMMAND
set +f
exit $?
fi
fi

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 [[ $(grep --fixed-strings "$3" "$DOKKU_ROOT/$APP/VHOST" > /dev/null 2>&1; echo $?) -eq 0 ]]; then
echo "$3 is already defined for $APP"
exit 1
fi