aboutsummaryrefslogtreecommitdiff
path: root/templates/Debian/apticron_lenny.erb
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2010-12-11 09:39:27 +0100
committerintrigeri <intrigeri@boum.org>2010-12-11 09:39:27 +0100
commit1cf642b3a87399c165e9e66399ab92694b27ee43 (patch)
tree27f0612ef1104f4158a94bbf9455b25ecf8fa1d6 /templates/Debian/apticron_lenny.erb
parent5e94f0707c2e77f73444a88844bc800124d6e05e (diff)
parentab3a5294cf0ea0cf2ad233e04bf13f7631f9454c (diff)
downloadpuppet-apt-1cf642b3a87399c165e9e66399ab92694b27ee43.tar.gz
puppet-apt-1cf642b3a87399c165e9e66399ab92694b27ee43.tar.bz2
Merge remote branch 'riseup/master'
Diffstat (limited to 'templates/Debian/apticron_lenny.erb')
-rw-r--r--templates/Debian/apticron_lenny.erb49
1 files changed, 49 insertions, 0 deletions
diff --git a/templates/Debian/apticron_lenny.erb b/templates/Debian/apticron_lenny.erb
new file mode 100644
index 0000000..e484700
--- /dev/null
+++ b/templates/Debian/apticron_lenny.erb
@@ -0,0 +1,49 @@
+# apticron.conf
+#
+# set EMAIL to a list of addresses which will be notified of impending updates
+#
+EMAIL="<%= apticron_email %>"
+
+#
+# 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.
+#
+DIFF_ONLY="<%= apticron_diff_only %>"
+
+#
+# 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
+#
+LISTCHANGES_PROFILE="<%= apticron_listchanges_profile %>"
+
+#
+# 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"
+<%- if has_variable?(apticron_system) and instance_variable_get("@#{apticron_system}").to_s != "false" -%>
+<%= 'SYSTEM="' + instance_variable_get("@#{apticron_system}").to_s + '"' %>
+<%- end -%>
+
+#
+# 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"
+<%- if has_variable?(apticron_ipaddressnum) and instance_variable_get("@#{apticron_ipaddressnum}").to_s != "false" -%>
+<%= 'IPADDRESSNUM="' + instance_variable_get("@#{apticron_ipaddressnum}").to_s + '"' %>
+<%- end -%>
+
+#
+# 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"
+<%- if has_variable?(apticron_ipaddresses) and instance_variable_get("@#{apticron_ipaddresses}").to_s != "false" -%>
+<%= 'IPADDRESSES="' + instance_variable_get("@#{apticron_ipaddresses}").to_s + '"' %>
+<%- end -%> \ No newline at end of file