On Tue, Feb 08, 2022 at 02:25:35PM -0500, Lee wrote: > Apparently the syslog message > systemd[1]: Starting Daily apt upgrade and clean activities... > is caused by systemd / apt-daily.timer - correct? > > # sudo systemctl status apt-daily.timer > ● apt-daily.timer - Daily apt download activities > Loaded: loaded (/lib/systemd/system/apt-daily.timer; enabled; > vendor preset: enabled) > Active: active (waiting) since Fri 2022-01-28 15:16:57 EST; 1 > weeks 3 days ago > Trigger: Wed 2022-02-09 00:33:19 EST; 10h left > Triggers: ● apt-daily.service > > I'm sure I don't want any automatic apt upgrade happening, but what > are the "clean activities"?
Exactly what you'd imagine. apt-get update apt-get upgrade apt-get clean For more detail, see /usr/lib/apt/apt.systemd.daily -- # APT::Periodic::Unattended-Upgrade "0"; # - Run the "unattended-upgrade" security upgrade script # every n-days (0=disabled) # Requires the package "unattended-upgrades" and will write # a log in /var/log/unattended-upgrades # # APT::Periodic::AutocleanInterval "0"; # - Do "apt-get autoclean" every n-days (0=disable) # # APT::Periodic::CleanInterval "0"; # - Do "apt-get clean" every n-days (0=disable)