commit eb969f380ea5878e852f2efcbb6dff4135933e4e Author: Patrick Date: Sun Feb 18 21:20:34 2018 +0100 installationsscript begonnen diff --git a/installation.sh b/installation.sh new file mode 100755 index 0000000..bb4fbe6 --- /dev/null +++ b/installation.sh @@ -0,0 +1,58 @@ +#!/bin/bash + +if ping -c 1 8.8.8.8 +then + echo "Kein Internet" + exit 1 +fi + +#Installation von Systempaketen +sudo aptitude install git vim htop iftop ethtool nload + +#Passwörter setzen +echo -e "\nPasswörter werden gesetzt" +echo "Passwort für $USER" +passwd +echo "Passwort für root" +sudo passwd + +#ssh PermitRoot +echo -e "\nSSH wird geändert und aktiviert" +sudo sed -e 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/' -i /etc/ssh/sshd_config +sudo systemctl enable ssh.service +sudo systemctl restart ssh.service + +#vim mouse syntax +echo -e "\nvim wird eingerichtet" +echo -e "syntax on\nset mouse=v" | tee /home/$USER/.vimrc | sudo tee /root/.vimrc + +#rasp_temp +#nrpe +echo -e "\nnrpe wird installiert" +sudo aptitude install -y nagios-nrpe-server monitoring-plugins + +#cd /usr/lib/nagios/plugins/ && \ +echo -e "\ncheck_rasp_temp wird installiert" +sudo wget -O /usr/lib/nagios/plugins/check_rasp_temp https://raw.githubusercontent.com/larsen0815/check_rasp_temp/master/check_rasp_temp +sudo chmod +x check_rasp_temp + +cat < /dev/null 2>&1" | sudo tee -a /etc/crontab + + +#apt-clone +#git mit gitignore + +#user pi löschen +#Upgrade