28 lines
791 B
Bash
28 lines
791 B
Bash
##--------------##
|
|
# Pre-Config #
|
|
##--------------##
|
|
apt update
|
|
|
|
##-------------##
|
|
# Installer #
|
|
##-------------##
|
|
apt install unattended-upgrades -y
|
|
|
|
##----------------##
|
|
# 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 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/"$LinVer"_50unattended-upgrades -O /etc/apt/apt.conf.d/50unattended-upgrades |