> So puppet actually uses »/sbin/service build_iptables status« to check
> if your service is running.

Agreed.  The service command works as well (and it also checks to make
sure it is chkconfig'ed on)

This has worked for months before recently.  I just just checked and I
added the status option on 2/23/11 (these are in a version control
system, so I have logs).

I just attempted to find in the logs when this started happening
(suspect 2 weeks ago), but I had the loglevel set to debug on this
from an old test I was doing and never removed it (oops!).

Any other ideas?

On Aug 12, 1:39 pm, Stefan Schulte <stefan.schu...@taunusstein.net>
wrote:
> On Fri, Aug 12, 2011 at 06:32:57AM -0700, Chad wrote:
> > All,
>
> > I have puppet watching various services on RHEL systems and restarting
> > them as necessary.
>
> > Quite a while back I wrote some custom scripts as wrappers for various
> > services so that I can have a "custom" running status.  These have
> > worked for quite a few months, but recently my iptables services have
> > been restarting every time puppet checks in.
>
> > Problem:
>
> > [me@host ~]$ sudo /usr/sbin/puppetd --test --noop
> > info: Caching catalog for host@fakedomain
> > info: Applying configuration version '1312979662'
> > notice: //iptables/Service[build_iptables]/ensure: is stopped, should
> > be running (noop)
> > notice: Finished catalog run in 3.09 seconds
>
> > Excerpt from manifest that does this:
>
> >     service { "build_iptables":
> >        enable      => true,
> >        ensure      => running,
> >        hasstatus => true,
> >     }
>
> > 'build_iptables' does a couple of things, but most importantly for
> > this problem it runs a regex to look for a particular rule to see if
> > it exists.  If said rule exists it returns that the service is
> > running, if that rule doesn't exist then it says it is not running and
> > restarts the 'build_iptables' service (which does things to fix the
> > issue along with restarts the "real" iptables service).
>
> > But if I run the same build_iptables script I see that it is running:
>
> > [me@host ~]$ sudo /sbin/service build_iptables status
> > iptables is running
> > [me@host ~]$ echo $?
> > 0
>
> > [me@host ~]$ sudo /usr/sbin/puppetd --test --noop
> > info: Caching catalog for host.fakedomain
> > info: Applying configuration version '1312979662'
> > notice: //iptables/Service[build_iptables]/ensure: is stopped, should
> > be running (noop)
> > notice: Finished catalog run in 2.88 seconds
>
> > [me@host ~]$ sudo /sbin/service build_iptables status
> > iptables is running
> > [me@host ~]$ echo $?
> > 0
>
> > This worked for a number of months, but recently broke.  The issue is
> > that when iptables restarts it drops it's state table and any
> > connections that would be allowed (through the ESTABLISHED or RELATED
> > rule) are no longer recognized and the packets are dropped.
>
> > Here is the relevant debug output:
>
> > debug: Service[build_iptables](provider=redhat): Executing '/sbin/
> > service build_iptables status'
> > debug: Puppet::Type::Service::ProviderRedhat: Executing '/sbin/
> > chkconfig build_iptables'
> > debug: //iptables/Service[build_iptables]: Changing ensure
> > debug: //iptables/Service[build_iptables]: 1 change(s)
> > notice: //iptables/Service[build_iptables]/ensure: is stopped, should
> > be running (noop)
>
> So puppet actually uses »/sbin/service build_iptables status« to check
> if your service is running.
>
> Is it possible that your initscript depends on a specific environment
> (like a special PATH variable?). Maybe your script doesnt work when run
> through puppet so it doesnt return with zero and puppet thinks the
> service is not running.
>
> -Stefan
>
>  application_pgp-signature_part
> < 1KViewDownload

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to