summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorPedro González Serrano <niteman.es@gmail.com>2012-12-14 21:17:48 +0100
committerPedro González Serrano <niteman.es@gmail.com>2012-12-14 21:17:48 +0100
commit7d87752f3178732811b53deb4d8c167184e27a16 (patch)
treee4b081962cfbc6360ae0181c873701602b871fcc /manifests
parenta9aa40fd338babfd292a1c5d4724f487712981ec (diff)
Why $rsyslog::params::rsyslog_d gets purged?
On Debian (squeeze) when installing other packages (like postfix) some of them add files to /etc/rsyslog.d/ In particular I can't see how to add postfix include to the mix of this module without coupling it with others or coding a specific hack on template. Postfix include (/etc/rsyslog.d/postfix.conf) looks like: ~~~ # Create an additional socket in postfix's chroot in order not to break # mail logging when rsyslog is restarted.  If the directory is missing, # rsyslog will silently skip creating the socket. $AddUnixListenSocket /var/spool/postfix/dev/log ~~~
Diffstat (limited to 'manifests')
-rw-r--r--manifests/config.pp1
1 files changed, 0 insertions, 1 deletions
diff --git a/manifests/config.pp b/manifests/config.pp
index 58f454f..e51ad10 100644
--- a/manifests/config.pp
+++ b/manifests/config.pp
@@ -15,7 +15,6 @@ class rsyslog::config inherits rsyslog::params {
ensure => directory,
owner => 'root',
group => $rsyslog::params::run_group,
- purge => true,
recurse => true,
force => true,
require => Class['rsyslog::install'],