1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
## Path: System/Cron/PackageKit
## Description: Cron job to update the system daily with PackageKit
## Type: yesno
## Default: no
#
# Run the cron job.
#
ENABLED=no
## Type: yesno
## Default: no
#
# Check if updates are available, instead of installing.
#
CHECK_ONLY=no
## Type: yesno
## Default: no
#
# Trigger updates, so they will be installed on reboot.
#
UPDATE_OFFLINE=no
## Type: string
## Default: ""
#
# If MAILTO is set, the mail command is used to deliver PackageKit output.
# By default MAILTO is unset, so crond mails the output by itself.
#
MAILTO=""
## Type: string
## Default: ""
#
# You may set SYSTEM_NAME if you want your PackageKit emails tagged differently.
# Default is output of hostname command.
#
SYSTEM_NAME=""
## Type: integer
## Default: 3600
#
# Update checks will sleep random time before contacting the servers to
# avoid hammering them with thousands of request at the same time - this
# is the maximum sleep time (in seconds) for the random wait period.
#
SLEEP_MAX=3600
|