From e9a8bab3395b0ac198e127d3ca8fcc7f75f43d3c Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sat, 15 Aug 2015 09:54:53 +0300 Subject: [PATCH] addusers: initial commit (#7) --- bash/addusers | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 bash/addusers diff --git a/bash/addusers b/bash/addusers new file mode 100644 index 0000000..af2aafa --- /dev/null +++ b/bash/addusers @@ -0,0 +1,27 @@ +#!/usr/bin/env bash + +# Stupid script for adding users to family and friends after fresh +# installations. I am too lazy to always do this by hand! + +# Loop with the users +for user in matti tommi tiina nenne lena +do + # To see that it works + echo "Current user: $user" + # Create the user & homedir if it doesn't exist + useradd -m $user + # Set user & group as the owner (in case fresh install with old /home) + chown -R $user:$user /home/$user + # Remove password & force new to be given during first login + passwd -de $user + # Does this still work? + echo "User ready: $user" +done + +# And next sudoers +for sudoer in matti tommi tiina +do + # Add the user to sudo group (as they are administrator) + echo "Current sudoer: $sudoer" + usermod -a -G sudo $sudoer +done