From: Oleg Broytman Date: Thu, 4 Jun 2026 21:23:23 +0000 (+0300) Subject: Feat(init-system.sh): `adduser --gecos` X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=e8a2dd3fa6b314fb4cb44b8f934f712b1d42dd7f;p=ansible.git Feat(init-system.sh): `adduser --gecos` --- diff --git a/playbooks/debian/init-system.sh b/playbooks/debian/init-system.sh index 48294ff..6a4b3e7 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 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 &&