diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..1a1dd98 --- /dev/null +++ b/install.sh @@ -0,0 +1,12 @@ +#!/bin/sh +echo 'Cmnd_Alias UPDATER_ONLY = /usr/local/bin/updater.sh' >> /etc/sudoers +echo '%staff ALL= NOPASSWD: UPDATER_ONLY' >> /etc/sudoers + +echo '#!/bin/bash' >> /usr/local/bin/updater.sh +echo 'sudo apt-get update && sudo apt-get upgrade -y' >> /usr/local/bin/updater.sh +chmod 0755 /usr/local/bin/updater.sh + +printf 'Wie heisst der User?? ' +read answer +sudo usermod -aG staff $answer +