From: Oleg Broytman Date: Fri, 5 Jun 2026 20:46:23 +0000 (+0300) Subject: Fix(init-system.sh): Fix remote command's quotes X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=366259a616898203b3c22b4c8823d8150fd40ae1;p=ansible.git Fix(init-system.sh): Fix remote command's quotes --- diff --git a/playbooks/debian/init-system.sh b/playbooks/debian/init-system.sh index 6a4b3e7..ab1146a 100755 --- a/playbooks/debian/init-system.sh +++ b/playbooks/debian/init-system.sh @@ -26,7 +26,7 @@ if [ \! grep -Fqw "$host" ../hosts ]; then exit 1 fi -ssh root@$host exec adduser --comment "Oleg Broytman" phd # Ignore error: may already be created +ssh root@$host 'exec adduser --comment "Oleg Broytman" phd' # Ignore error: may already be created # Passwordless access isn't configured yet; use `ssh` connection sharing. ssh phd@$host exit &&