The SystemUpdated control verifies that your operating system has all the latest security updates and patches installed. Keeping your system up to date is one of the most important steps you can take to protect your device.
Software updates fix known security vulnerabilities that attackers actively exploit. Running outdated software leaves you exposed to these well-documented threats.
Security vulnerabilities in outdated systems can allow attackers to steal your data, passwords, and personal information. Updates close these security holes.
Updates often include improvements to existing security features, better performance, and new protections against emerging threats.
Run your distribution's package manager update, then reboot if a new kernel was installed.
Debian / Ubuntu:
sudo apt update && sudo apt upgrade
sudo reboot # if prompted, or if a new kernel was installed
Fedora / RHEL / CentOS:
sudo dnf upgrade
sudo reboot # if a new kernel package was installed
/var/run/reboot-required (Debian/Ubuntu) or by a kernel package installed more recently than your last boot (RPM-based distros)After installing updates and restarting, Citadel will automatically verify this control during its next check.
Note: If you see "Restart required" or "Restart pending", you must restart your computer to complete the updates.
Note: If you see "Updates available" or "Restart to finish installing", you need to complete those steps first.
# Debian / Ubuntu
test -e /var/run/reboot-required && echo "reboot needed" || echo "no reboot needed"
# Fedora / RHEL / CentOS
rpm -q --last kernel | head -1 # compare against: uptime -s