6e50cf94ab
* Paragraphs (or stanzas) should cover 1 topic only. * No need for options.
10 lines
253 B
Bash
10 lines
253 B
Bash
#!/bin/bash
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
apt-get -yqq update
|
|
apt-get -yqq dist-upgrade
|
|
systemctl disable apt-daily.service
|
|
systemctl disable apt-daily.timer
|
|
systemctl disable apt-daily-upgrade.timer
|
|
systemctl disable apt-daily-upgrade.service
|