[Puppet Users] Re: Puppet 3.1 - remove packages in order/with dependancies.

2013-02-11 Thread steve foster
Hi Rafal, the before meta-parameter would help you here: package{ 'Lib_Utils': ensure = absent, before = Package['MegaCli'], } Cheers Steve On Monday, February 11, 2013 11:00:58 AM UTC, RafaƂ Radecki wrote: Hi All. I would like to remove packages in a specified order because they are

[Puppet Users] Re: Puppet 3.1 - remove packages in order/with dependancies.

2013-02-11 Thread jcbollinger
On Monday, February 11, 2013 7:52:23 AM UTC-6, steve foster wrote: Hi Rafal, the before meta-parameter would help you here: package{ 'Lib_Utils': ensure = absent, before = Package['MegaCli'], } Or you could turn it around and use require = Package['Lib_Utils'] metaparameter on