You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
893 B
29 lines
893 B
4 years ago
|
#!/bin/sh -eux
|
||
|
|
||
|
arch="`uname -r | sed 's/^.*[0-9]\{1,\}\.[0-9]\{1,\}\.[0-9]\{1,\}\(-[0-9]\{1,2\}\)-//'`"
|
||
|
debian_version="`lsb_release -r | awk '{print $2}'`";
|
||
|
major_version="`echo $debian_version | awk -F. '{print $1}'`";
|
||
|
|
||
|
# Disable systemd apt timers/services
|
||
|
systemctl stop apt-daily.timer;
|
||
|
systemctl stop apt-daily-upgrade.timer;
|
||
|
systemctl disable apt-daily.timer;
|
||
|
systemctl disable apt-daily-upgrade.timer;
|
||
|
systemctl mask apt-daily.service;
|
||
|
systemctl mask apt-daily-upgrade.service;
|
||
|
systemctl daemon-reload;
|
||
|
|
||
|
# Disable periodic activities of apt
|
||
|
cat <<EOF >/etc/apt/apt.conf.d/10periodic;
|
||
|
APT::Periodic::Enable "0";
|
||
|
APT::Periodic::Update-Package-Lists "0";
|
||
|
APT::Periodic::Download-Upgradeable-Packages "0";
|
||
|
APT::Periodic::AutocleanInterval "0";
|
||
|
APT::Periodic::Unattended-Upgrade "0";
|
||
|
EOF
|
||
|
|
||
|
apt-get update;
|
||
|
|
||
|
apt-get -y upgrade linux-image-$arch;
|
||
|
apt-get -y install linux-headers-`uname -r`;
|