search for: pvmd0evrmxxnr1os0mrhlpu

Displaying 1 result from an estimated 1 matches for "pvmd0evrmxxnr1os0mrhlpu".

2007 Sep 24
3
Custom type
Hi. I have a small problem with the custom type I am working on. I define method ''evaluate'' which is called after all data is been collected. Here it is: module Puppet newtype(:test) do newparam(:name) do end newparam(:listen) do defaultto "silent" end def evaluate puts "evaluating..." return super.evaluate end