diff options
-rwxr-xr-x | share/hydra/install | 2 | ||||
-rwxr-xr-x | share/hydractl/provision | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/share/hydra/install b/share/hydra/install index b16cf02..a639db3 100755 --- a/share/hydra/install +++ b/share/hydra/install @@ -38,7 +38,7 @@ for node in $NODES; do echo "Installing to $node..." # Rsync version - rsync -CrltDv --no-perms --exclude=keys --delete --rsync-path "sudo rsync" $APP_BASE/ $node:/usr/local/hydra/ + rsync -rltDv --no-perms --delete --rsync-path "sudo rsync" $APP_BASE/ $node:/usr/local/hydra/ $HYDRA_CONNECT $node <<EOF ##### BEGIN REMOTE SCRIPT ##### diff --git a/share/hydractl/provision b/share/hydractl/provision index 844debb..d1a2cce 100755 --- a/share/hydractl/provision +++ b/share/hydractl/provision @@ -132,7 +132,7 @@ if [ ! -z "$1" ]; then echo "Using configuration from $APP_BASE/share/config/provision/$1.conf..." source "$1.conf" else - echo "File not found: $1" + echo "Profile not found: $1" exit 1 fi fi |