Re: [Puppet Users] puppetlabs-lvm and --guess-fstype

2013-02-22 Thread steve foster
Logged a bug: http://projects.puppetlabs.com/issues/19410 On Friday, 22 February 2013 09:47:33 UTC, Mathieu Bornoz wrote: > > Hi, > > I just came across this problem due to an upgrade of util-linux-ng on > RHEL6 this morning :( > > I have not seen any github PR related to this problem on puppe

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

Re: [Puppet Users] Re: Augeas & Arrays

2012-05-29 Thread steve foster
very > confused. > > Additionally if I use $fport in the changes or matches section of augeas I > still get a concatenation of the array... even more confused! > > TIA > > Steve > > On Monday, May 28, 2012 9:13:54 PM UTC+1, Raphink wrote: >> >> Adding

[Puppet Users] Re: Augeas & Arrays

2012-05-29 Thread steve foster
on of the array... even more confused! TIA Steve On Monday, May 28, 2012 9:13:54 PM UTC+1, Raphink wrote: > > Adding to Paul's answer, if you want to set more than one port here, > you'll probably want to make a define for a port and loop on resources. > > Th

[Puppet Users] Augeas & Arrays

2012-05-28 Thread steve foster
Hi Folks, I'm trying to figure our why if I pass an array to a augeas resource type it ends up being concatenated eg for the following example I would expect 2 firewall rules, but instead I get one rule with the dport = 17001701 class {'test': port=> ['1700', '1701'], } class test