On Jan 6, 3:52 pm, simonmcc <simon.mccart...@gmail.com> wrote:
> inside puppet is it possible to block or stall a service restart until
> some external component clears the restart?
>
> for example, I want to make sure a node is bled down on the load-
> balancer before allowing the restart to happen.
>
> a post restart feature of re-enabling in the load-balancer would also
> be really useful :-)


Generally, Puppet uses a service's init script to manipulate it, so
you can alter services' restart behavior by modifying their init
scripts.  That has the additional advantage that you get the same
behavior if the service is ever restarted any other way.

There is no way to tell Puppet to start processing one resource,
switch to processing a different resource, and later resume with the
first.  You could possibly split the load balancer bleed-down and spin-
up into separate resources, however, and use standard Puppet 'require'
and 'before' relationships or resource chaining to establish order of
application.  That might be advantageous if there are multiple
resources you want to manage only while the load-balancer is down.


John

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