2010-12-09 04:24:24 +01:00
|
|
|
# apticron.conf
|
|
|
|
#
|
|
|
|
# set EMAIL to a list of addresses which will be notified of impending updates
|
|
|
|
#
|
2012-06-06 02:31:15 +02:00
|
|
|
EMAIL="<%= scope.lookupvar('apt::apticron::email') %>"
|
2010-12-09 04:24:24 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Set DIFF_ONLY to "1" to only output the difference of the current run
|
|
|
|
# compared to the last run (ie. only new upgrades since the last run). If there
|
|
|
|
# are no differences, no output/email will be generated. By default, apticron
|
|
|
|
# will output everything that needs to be upgraded.
|
|
|
|
#
|
2012-06-06 02:31:15 +02:00
|
|
|
DIFF_ONLY="<%= scope.lookupvar('apt::apticron::diff_only') %>"
|
2010-12-09 04:24:24 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Set LISTCHANGES_PROFILE if you would like apticron to invoke apt-listchanges
|
|
|
|
# with the --profile option. You should add a corresponding profile to
|
|
|
|
# /etc/apt/listchanges.conf
|
|
|
|
#
|
2012-06-06 02:31:15 +02:00
|
|
|
LISTCHANGES_PROFILE="<%= scope.lookupvar('apt::apticron::listchanges_profile') %>"
|
2010-12-09 04:24:24 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Set SYSTEM if you would like apticron to use something other than the output
|
|
|
|
# of "hostname -f" for the system name in the mails it generates
|
|
|
|
#
|
|
|
|
# SYSTEM="foobar.example.com"
|
2012-06-06 02:31:15 +02:00
|
|
|
<%- unless scope.lookupvar('apt::apticron::system').to_s == "false" -%>
|
|
|
|
<%= "SYSTEM=\"#{scope.lookupvar('apt::apticron::system')}\"" %>
|
2010-12-09 04:29:45 +01:00
|
|
|
<%- end -%>
|
2010-12-09 04:24:24 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Set IPADDRESSNUM if you would like to configure the maximal number of IP
|
|
|
|
# addresses apticron displays. The default is to display 1 address of each
|
|
|
|
# family type (inet, inet6), if available.
|
|
|
|
#
|
|
|
|
# IPADDRESSNUM="1"
|
2012-06-06 02:31:15 +02:00
|
|
|
<%- unless scope.lookupvar('apt::apticron::ipaddressnum').to_s == "false" -%>
|
|
|
|
<%= "IPADDRESSNUM=\"#{scope.lookupvar('apt::apticron::ipaddressnum')}\"" %>
|
2010-12-09 04:29:45 +01:00
|
|
|
<%- end -%>
|
2010-12-09 04:24:24 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Set IPADDRESSES to a whitespace seperated list of reachable addresses for
|
|
|
|
# this system. By default, apticron will try to work these out using the
|
|
|
|
# "ip" command
|
|
|
|
#
|
|
|
|
# IPADDRESSES="192.0.2.1 2001:db8:1:2:3::1"
|
2012-06-06 02:31:15 +02:00
|
|
|
<%- unless scope.lookupvar('apt::apticron::ipaddresses').to_s == "false" -%>
|
|
|
|
<%= "IPADDRESSES=\"#{scope.lookupvar('apt::apticron::ipaddresses')}\"" %>
|
|
|
|
<%- end -%>
|
|
|
|
|