Description: Modify the default value for check_on_startup to false. This prevents an privacy/information disclosure unless the user explicitly opts-in for the update check. Forwarded: not-needed Origin: vendor Author: tony mancill --- a/src/gpodder/config.py +++ b/src/gpodder/config.py @@ -93,7 +93,7 @@ # Software updates from gpodder.org 'software_update': { - 'check_on_startup': True, # check for updates on start + 'check_on_startup': False, # check for updates on start 'last_check': 0, # unix timestamp of last update check 'interval': 5, # interval (in days) to check for updates }, 5bb7'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/etc/guix-gc.service.in
AgeCommit message (Expand)Author
2021-09-20etc: Add systemd files for running ‘guix gc’ periodically...* etc/guix-gc.service.in: New file. * etc/guix-gc.timer: Likewise. * .gitignore: Ignore generated ‘guix-gc.service’. * nix/local.mk (nodist_systemdservice_DATA): Add ‘guix-gc.service’ and ‘guix-gc.timer’. (EXTRA_DIST): Add ‘guix-gc.service.in’ and ‘guix-gc.timer’. * doc/guix.texi (Binary Installation): Mention the new systemd files. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Thiago Jung Bauermann