Re: [Puppet Users] How to set noop = true in manifest for custom function?

2017-04-03 Thread staceytian4321
Hi Rob, Thank you for the reply. The missing comma is a type in the post. In my actual test, I had the comma. I figured out how to enable noop = true for my custom function. I edited my custom function from {:name => package, :ensure => "latest"} to {:name => package, :noop => true, :ensure

Re: [Puppet Users] How to set noop = true in manifest for custom function?

2017-04-01 Thread Rob Nelson
In your second example, you're missing a comma after true. Not sure if that's bad copy pasta or accurate with the source. On Sat, Apr 1, 2017 at 12:21 PM wrote: > Hi, > > I am using open source puppet 3.7.3 master and client. > > I know how to set noop = true in an

[Puppet Users] How to set noop = true in manifest for custom function?

2017-04-01 Thread staceytian4321
Hi, I am using open source puppet 3.7.3 master and client. I know how to set noop = true in an individual manifest. For example, file { "/tmp/testfile1" : ensure => present, noop => true } Now I am trying a custom function