Skip to content
Snippets Groups Projects
Commit 3275c92f authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

gluon-core: add function to add users

parent f99767fb
No related branches found
No related tags found
No related merge requests found
add_user() {
local username="$1"
local id="$2"
[ "$username" -a "$id" ] || return 1
sed -i "/^$username:/d" /etc/passwd
sed -i "/^$username:/d" /etc/shadow
echo "$username:*:$id:100:$username:/var:/bin/false" >> /etc/passwd
echo "$username:*:0:0:99999:7:::" >> /etc/shadow
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment