search for: syslog_conf

Displaying 4 results from an estimated 4 matches for "syslog_conf".

Did you mean: rsyslog_conf
2007 Aug 27
1
Re: Problem restarting client service ssh in client (Pedro Simoes)
...Debian => ssh, default => sshd }, ensure => running, subscribe => File[sshd_config] } } I''ve added another service (syslog.pp): ## services/syslog.pp class syslog { file { syslog_conf: name => "/etc/syslog-ng/syslog-ng.conf" } service { syslog: name => syslog-ng, ensure => running, subscribe => File[syslog_conf] } } Now I''ve deleted the file, remove it from si...
2007 Jun 04
5
Virtual defines ?
I just started messing with puppet, and i love it! I have used cfengine in the past, and were in process of planing to replace cfengine now. One thing thats stumped me this weekend and i know i read your working on virtal defines so i can''t do that, but how can i get arond this issue with the curretn setup. I think i am missing something fundamentally simple here. i have this
2012 Aug 28
4
using puppet augeas to add entry in /etc/syslog.conf
Hi , I"m trying to add a entry in /etc/syslog.conf using puppet augeas like this " *.warning;mail.none;authpriv.none;cron.none @syslog_host" , seems the way to do this with augeas is : augeas { "syslog_conf": lens => "syslog.lns", incl => "/etc/syslog.conf", changes => [ "ins entry after entry[last()]", "set entry[last()]/selector[1]/facility ''*''...
2007 Aug 24
7
Problem restarting client service ssh in client
Hello, I want a simple operation in a puppet node like restarting the ssh service if it was stopped. My site.pp is simple as this: import "services/*" node default { include ssh } The services directory as a ssh.pp : class ssh { service { ssh: ensure => running, subscribe => File["/etc/ssh/sshd_config"] } } I''ve stopped the ssh service in the