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
|
# use this command to become root
$GETROOT="sudo";
# clean package cache after upgrade/install
$CLEANUP=0;
# the installation UUID
$UUIDFILE = '/etc/apt-dater-host.uuid';
# If this host is part of (multiple) cluster(s), you might set a
# symbolic name. Hosts with the same cluster name won't be upgraded
# simultaneously by apt-dater (requires apt-dater 0.9 or above).
#@CLUSTERS = qw(my-db-cluster);
# Check if needrestart is available. This requires the needrestart
# package to be installed.
$NEEDRESTART = (-x '/usr/sbin/needrestart' ? '/usr/sbin/needrestart' : undef);
# On apt-based systems needrestart should to be called by apt directly,
# no need to run it in an interactive mode from within apt-dater-host.
$RUNNEEDREST = $NEEDRESTART;
##
## If this host is a mission critical system and
## needs scheduled downtimes for upgrades, enable
## (some) of the following $FORBID_* lines:
##
# prevent apt-dater-host from upgrading packages
#$FORBID_UPGRADE=1;
# prevent apt-dater-host from installing packages
#$FORBID_INSTALL=1;
|