__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/bin/sh
set -e
AUTO_UPGRADE="/etc/apt/apt.conf.d/20auto-upgrades"
# Source debconf library.
. /usr/share/debconf/confmodule
# Load configuration from disk, if it exists.
if [ -e "$AUTO_UPGRADE" ]; then
if grep -q 'APT::Periodic::Unattended-Upgrade "1";' $AUTO_UPGRADE ; then
db_set unattended-upgrades/enable_auto_updates true
elif grep -q 'APT::Periodic::Unattended-Upgrade "0";' $AUTO_UPGRADE ; then
db_set unattended-upgrades/enable_auto_updates false
fi
fi
db_input low unattended-upgrades/enable_auto_updates || true
db_go