add init scripts

This commit is contained in:
Roger Pàmies Fabra 2023-01-22 23:58:40 +01:00
parent 3d01909226
commit 3276863650
2 changed files with 30 additions and 0 deletions

30
init_scripts.sh Normal file
View File

@ -0,0 +1,30 @@
#!/bin/bash
#verify run as root or sudo
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
exit 1
fi
echo "/////////////////////////////////////"
echo "Benvingut a l'instalador d'Scripts"
echo "/////////////////////////////////////"
# Choose script to install
echo "0) Sortir de l'instalador"
echo "1) Notificador d'actualitzacions"
echo "2) Escaneig de rootkits amb RK Hunter"
echo "3) Escaneig de rootkits amb CHK Rootkit"
echo "4) Escaneig de virus amb ClamAV"
finished=false
while [ "$finished" != "true" ]
do
read -p 'Indica quin script vols instal·lar: ' SCRIPT_NUM
case $SCRIPT_NUM in
("") echo "El número no pot ser buit";;
(*[!0-9]*) echo "Has d'introduir un número";;
(*[5-9]*) echo "Aquest número d'script no existeix";;
(*) finished=true #echo "just numeric";;
esac
done

0
updates-notifier.sh → updates_notifier.sh Executable file → Normal file
View File