diff options
-rwxr-xr-x | sshtool | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -34,13 +34,13 @@ SSH_CONFIG=cluster/$CLUSTER/ssh_config function header { cat <<EOF -export DEPLOYTOOL_ROOT_PASSWORD="$ROOT_PASS" cat > /tmp/deploytool_askpass <<EOG #!/usr/bin/env sh -echo "\$DEPLOYTOOL_ROOT_PASSWORD" +echo "\\\$DEPLOYTOOL_ROOT_PASSWORD" EOG chmod +x /tmp/deploytool_askpass export SUDO_ASKPASS=/tmp/deploytool_askpass +export DEPLOYTOOL_ROOT_PASSWORD="$ROOT_PASS" sudo -A sh - <<'EOEVERYTHING' set -e EOF |