Files
VPS-scripts_Unattended-Secu…/installer.sh
2019-09-15 18:36:30 +02:00

35 lines
910 B
Bash

##--------------##
# Pre-Config #
##--------------##
## Checking for preconfigured APT command
if [ -z "$PKGI" ] || [ -z "$PKGM" ]
then
PKGM="apt"
PKGI="${PKGM} install -y"
fi
$PKGM update
##-------------##
# Installer #
##-------------##
$PKGI unattended-upgrades
##----------------##
# 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