Update 'installer.sh'
This commit is contained in:
22
installer.sh
22
installer.sh
@@ -8,9 +8,21 @@ apt update
|
||||
##-------------##
|
||||
apt install unattended-upgrades -y
|
||||
|
||||
##----------##
|
||||
# Config #
|
||||
##----------##
|
||||
##----------------##
|
||||
# OS Detection #
|
||||
##----------------##
|
||||
#!/bin/bash
|
||||
source /etc/os-release
|
||||
if [ "$ID" = "debian" ]; then
|
||||
LinVer=Debian
|
||||
elif [ "$ID" = "ubuntu" ]; then
|
||||
LinVer=Ubuntu
|
||||
else
|
||||
echo "this OS is not yet supported"
|
||||
fi
|
||||
|
||||
##-----------##
|
||||
# Configs #
|
||||
##-----------##
|
||||
wget -q -t7 https://git.ictmaatwerk.com/VPS-scripts/Unattended-Security-Updates/raw/branch/master/config/Universal_20auto-upgrades -O /etc/apt/apt.conf.d/20auto-upgrades
|
||||
wget -q -t7 https://git.ictmaatwerk.com/VPS-scripts/Unattended-Security-Updates/raw/branch/master/config/Ubuntu_50unattended-upgrades -O /etc/apt/apt.conf.d/50unattended-upgrades
|
||||
wget -q -t7 https://git.ictmaatwerk.com/VPS-scripts/Unattended-Security-Updates/raw/branch/master/config/Debian_50unattended-upgrades -O /etc/apt/apt.conf.d/50unattended-upgrades
|
||||
wget -q -t7 https://git.ictmaatwerk.com/VPS-scripts/Unattended-Security-Updates/raw/branch/master/config/"$LinVer"_50unattended-upgrades -O /etc/apt/apt.conf.d/50unattended-upgrades
|
||||
Reference in New Issue
Block a user