We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On debian (at least buster), the systemd service "apt-daily-upgrade.service", which install package upgrades is controlled by apt-daily-upgrade.timer.
Currently the service is triggered at 6:00 plus a random delay of 0-60 minutes :
# cat /lib/systemd/system/apt-daily-upgrade.timer
[Unit] Description=Daily apt upgrade and clean activities After=apt-daily.timer [Timer] OnCalendar=*-*-* 6:00 RandomizedDelaySec=60m Persistent=true [Install] WantedBy=timers.target
Would it be possible to have a way of controlling the OnCalendar and RandomizedDelaySec parameters ?
Thanks
an example configuration would be :
apt: unattended: service: upgrade: calendar: "*-*-* 6:00" delay: "60m"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem?
On debian (at least buster), the systemd service "apt-daily-upgrade.service", which install package upgrades is controlled by apt-daily-upgrade.timer.
Currently the service is triggered at 6:00 plus a random delay of 0-60 minutes :
# cat /lib/systemd/system/apt-daily-upgrade.timer
Would it be possible to have a way of controlling the OnCalendar and RandomizedDelaySec parameters ?
Thanks
Describe the solution you'd like
an example configuration would be :
Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered: