mirror of
https://github.com/YunoHost-Apps/unattended_upgrades_ynh.git
synced 2024-10-01 13:35:00 +02:00
26 lines
946 B
Text
26 lines
946 B
Text
// Control parameters for cron jobs by /etc/cron.daily/apt //
|
|
|
|
// Enable the update/upgrade script (0=disable)
|
|
APT::Periodic::Enable "1";
|
|
|
|
// Do "apt-get update" automatically every n-days (0=disable)
|
|
APT::Periodic::Update-Package-Lists "1";
|
|
|
|
// Do "apt-get upgrade --download-only" every n-days (0=disable)
|
|
APT::Periodic::Download-Upgradeable-Packages "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::Unattended-Upgrade "1";
|
|
|
|
// Do "apt-get autoclean" every n-days (0=disable)
|
|
APT::Periodic::AutocleanInterval "30";
|
|
|
|
// Send report mail to root
|
|
// 0: no report (or null string)
|
|
// 1: progress report (actually any string)
|
|
// 2: + command outputs (remove -qq, remove 2>/dev/null, add -d)
|
|
// 3: + trace on
|
|
APT::Periodic::Verbose "__VERBOSITY__";
|