The AutoUpdates control verifies that your operating system is configured to automatically download and install security updates. This ensures your computer stays protected without requiring you to manually check for and install updates.
Important: Manual updates aren't enough. Security vulnerabilities are discovered constantly, and attackers often exploit them within hours of their disclosure. Automatic updates ensure critical security patches are installed as soon as they're available, protecting you even when you're busy or forget to check manually.
Security vulnerabilities are often exploited within hours of being discovered. Automatic updates ensure you're protected as quickly as possible without waiting for manual intervention.
Automatic updates work even when you're busy, on vacation, or simply forget to check. This ensures continuous protection without gaps in your security coverage.
When critical zero-day vulnerabilities are discovered, automatic updates can deploy emergency patches immediately, protecting you from attacks before they become widespread.
Debian / Ubuntu:
sudo apt install unattended-upgrades
sudo dpkg-reconfigure -plow unattended-upgrades
# ensure /etc/apt/apt.conf.d/20auto-upgrades contains:
# APT::Periodic::Unattended-Upgrade "1";
sudo systemctl enable --now apt-daily-upgrade.timer
Fedora / RHEL / CentOS:
sudo dnf install dnf-automatic
# in /etc/dnf/automatic.conf, set:
# apply_updates = yes
sudo systemctl enable --now dnf-automatic.timer
After enabling automatic updates, Citadel will automatically verify this control during its next check.
# Debian / Ubuntu
systemctl is-enabled apt-daily-upgrade.timer
systemctl is-active apt-daily-upgrade.timer
# Fedora / RHEL / CentOS
systemctl is-enabled dnf-automatic.timer
systemctl is-active dnf-automatic.timer