Hi,  

I have a service /etc/init.d/a that spawns multiple daemons b and c.

This manifest does not make much sense to me but… any tip?

service { 'a':  
ensure => running,  
pattern => ["/usr/local/bin/b", "/usr/local/bin/c"],
}

or should I test them individually?

service { 'a':  
ensure => running,  
pattern => "/usr/local/bin/b",
}

service { 'a':  
ensure => running,  
pattern => "/usr/local/bin/c",
}


or even other way around :)


thanks in advance

--  
Frank

-- 
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