From 366259a616898203b3c22b4c8823d8150fd40ae1 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Fri, 5 Jun 2026 23:46:23 +0300 Subject: [PATCH] Fix(init-system.sh): Fix remote command's quotes --- playbooks/debian/init-system.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 && -- 2.47.3