1 Commits

Author SHA1 Message Date
44ea1a3071 adduser-space script 2026-02-22 14:30:28 +02:00

6
scripts/adduser-space Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
username=$1
useradd -m -s /bin/bash "$username"
loginctl enable-linger "$username" # for user's systemd services to work after logout and start with system start
echo "$username"