e8716e742e
If we move these into a subdir, it cleans up the number of things we nave to files match on. Stop running disable-puppet-agent in base. We run it in run-puppet which should be fine. Change-Id: Ia16adb96b11d25a097490882c4c59a50a0b7b23d
20 lines
279 B
Django/Jinja
20 lines
279 B
Django/Jinja
# /etc/aliases
|
|
mailer-daemon: postmaster
|
|
postmaster: root
|
|
nobody: root
|
|
hostmaster: root
|
|
usenet: root
|
|
news: root
|
|
webmaster: root
|
|
www: root
|
|
ftp: root
|
|
abuse: root
|
|
noc: root
|
|
security: root
|
|
|
|
{% for k, v in exim_aliases|dictsort %}
|
|
{% if v %}
|
|
{{ k }}: {{ v }}
|
|
{% endif %}
|
|
{% endfor %}
|