Displaying 1 result from an estimated 1 matches for "pcfree".
Did you mean:
p_free
2011 Nov 15
10
Adding a parameter to a custom Puppet type/provider
Hi All,
I''ve downloaded a Puppet module and I''m trying to add a parameter to it by
editing lib/puppet/type/<resource>.rb. I simply added:
newproperty(:pcfree) do
desc "My description here"
end
In the corresponding file in lib/puppet/provider, I do something with
:pcfree.
Whenever I call the resource from Puppet with my new parameter, it keeps
saying "Invalid parameter pcfree".
Do I have to define the new parameter in a...