]> git.phdru.name Git - ansible.git/commitdiff
Feat(init-system.sh): `adduser --gecos`
authorOleg Broytman <phd@phdru.name>
Thu, 4 Jun 2026 21:23:23 +0000 (00:23 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 4 Jun 2026 21:23:23 +0000 (00:23 +0300)
playbooks/debian/init-system.sh

index 48294ff9f0dfe053a033f480538e0a83a7687e0d..6a4b3e76ef4bcd4526ba1de999514c436fb2037c 100755 (executable)
@@ -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 &&