From 0f94c566e6e6b76e6b896103f6eba89364ac91c1 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Fri, 4 Sep 2015 15:35:06 +0300 Subject: [PATCH] bash/addusers: Arch! --- bash/addusers | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) mode change 100644 => 100755 bash/addusers diff --git a/bash/addusers b/bash/addusers old mode 100644 new mode 100755 index af2aafa..71f3bc7 --- a/bash/addusers +++ b/bash/addusers @@ -4,7 +4,7 @@ # installations. I am too lazy to always do this by hand! # Loop with the users -for user in matti tommi tiina nenne lena +for user in mikaela matti tommi tiina nenne lena do # To see that it works echo "Current user: $user" @@ -19,9 +19,9 @@ do done # And next sudoers -for sudoer in matti tommi tiina +for sudoer in mikaela matti tommi tiina do # Add the user to sudo group (as they are administrator) echo "Current sudoer: $sudoer" - usermod -a -G sudo $sudoer + usermod -a -G wheel $sudoer done