Files
VPS-scripts_Unattended-Secu…/installer.sh
2019-09-18 02:34:12 +02:00

35 lines
869 B
Bash

#!/bin/bash
##--------------##
# Pre-Config #
##--------------##
if [ -z "$PKGI" ] || [ -z "$PKGM" ]
then
PKGM="apt"
PKGI="${PKGM} install -y"
fi
$PKGM update
##-------------##
# Installer #
##-------------##
$PKGI unattended-upgrades
##----------------##
# OS Detection #
##----------------##
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