14 lines
331 B
Bash
14 lines
331 B
Bash
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
# Enable the live system configuration script at boot.
|
|
systemctl enable live-config.service
|
|
|
|
# Disable automatic apt update.
|
|
systemctl disable apt-daily.timer
|
|
systemctl disable apt-daily-upgrade.timer
|
|
|
|
# Disable autostart of Gnome Software background process.
|
|
rm /etc/xdg/autostart/org.gnome.Software.desktop
|