Given the following pattern in a puppet manifest:

file{ 'some/file/foo':
      content => 'blah blah blah',
      notify => Exec['talkaboutfoo']
}
exec { 'talkaboutfoo':
     cmd => "some/command/some/where",
     subscribe => File['some/file/foo']
}

with a little bit of hand waving.

Is there something similar in a custom provider?  Reason I'm asking is I
have
written a custom provider for a very customized piece of locally grown
software that ideally one of the configuration parameters

mytype{ 'instance':
     state => "on",          # this parameter
     parm1=> "a",
     parm2=> "b",
     parm3=>"c"
}

should be set *last* among all the other parameters.

Is there a way to do that?

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/CAArvnv2RBOWHpS4nmX99qjP_OpetGNBP_4am%3D6BxTaGDFZqpdg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to