mirror of
https://github.com/outbackdingo/debos.git
synced 2026-03-22 02:41:28 +00:00
11 lines
142 B
Bash
Executable File
11 lines
142 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "I: create user"
|
|
adduser --gecos User user
|
|
|
|
echo "I: set user password"
|
|
echo "user:user" | chpasswd
|
|
adduser user sudo
|