Skip to content
Snippets Groups Projects
Commit 18db5bdd authored by Bill MacAllister's avatar Bill MacAllister
Browse files

Make sure that the rsyslog preferences file is installed only on

wheezy systems.
parent 2f87c062
No related branches found
No related tags found
No related merge requests found
release/004.038 (2015-04-20)
Make sure that the rsyslog preferences file is installed only on
wheezy systems. (whm)
release/004.037 (2015-04-20)
Remove lenny and older references from tftp_client, os::debian,
......
......@@ -64,13 +64,16 @@ class base::os::debian {
recurse => true,
purge => true,
}
if $::lbdistcodename == 'wheezy' {
file { '/etc/apt/preferences.d/rsyslog':
content => template('base/os/preferences/rsyslog.erb')
}
}
file {
'/etc/apt/preferences':
content => '';
'/etc/apt/preferences.d/backports':
content => template('base/os/preferences/backports.erb');
'/etc/apt/preferences.d/rsyslog':
content => template('base/os/preferences/rsyslog.erb');
}
# lsb-release pulls in all of lsb unless we disable recommends handling
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment