Hast du denn auch schon mal geschaut, was da ausgeführt wird?
Ein Blick in apt.systemd.daily liefert gleich zu Beginn:
#!/bin/sh
#set -e
#
# This file understands the following apt configuration variables:
# Values here are the default.
# Create /etc/apt/apt.conf.d/10periodic file to set your preference.
#
# All of the n-days interval options also accept the suffixes
# s for seconds, m for minutes, h for hours, d for days or
# the "always" value to do the action for every job run,
# which can be used with systemd OnCalendar overrides to
# define custom schedules for the apt update/upgrade jobs.
Die Datei /etc/apt/apt.conf.d/10periodic wirst du wohl nicht angelegt haben.
Also gilt:
Values here are the default
Schauen wir mal weiter, so finden wir beispielsweise:
# APT::Periodic::Update-Package-Lists "0";
# - Do "apt-get update" automatically every n-days (0=disable)
#
# APT::Periodic::Download-Upgradeable-Packages "0";
# - Do "apt-get upgrade --download-only" every n-days (0=disable)
Kurz: Es ist glücklicherweise das eigentliche update bzw. upgrade disabled.
Wenn du das ändern willst, solltest du die entsprechenden Werte von 0 auf den gewünschten Wert setzen, indem du die Datei /etc/apt/apt.conf.d/10periodic anlegst.
Alles ohne Garantie, habs selbst nicht ausprobiert.
edlin