mirror of
https://github.com/outbackdingo/debos.git
synced 2026-01-27 18:18:45 +00:00
Usually to keep things clean we suggest users should keep scripts in a separate directory. Signed-off-by: Christopher Obbard <chris.obbard@collabora.com>
11 lines
162 B
Bash
Executable File
11 lines
162 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "I: create user"
|
|
adduser --gecos User --disabled-password user
|
|
|
|
echo "I: set user password"
|
|
echo "user:user" | chpasswd
|
|
adduser user sudo
|