Hi all,

I would like to reference a resource twice, with different
configurations.
At the moment I do this:

service { "service1":
  ensure => running,
  enable => true,
  require => Exec["some stuff"]
}

exec { "some stuff":
  command => "/etc/init.d/service1 stop; do some stuff required for
service1",
  unless => "find out if already ok"
}

As you can see, "some stuff" requires service1 to be stopped, so it
brings service1 down (dirty/ugly) itself.
I tried some other tricks as well (creating second service block) but
puppet is smart enough to see I'm aliasing service1 in that case.

Is there any nice way to do this?

Thanks,
Mathijs

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-us...@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