This is certainly how we handle the firewall/iptables case, using properties and a late flush:
https://github.com/puppetlabs/puppetlabs-firewall/blob/master/lib/puppet/provider/firewall/iptables.rb#L94-L102 On Tue, Feb 12, 2013 at 4:02 PM, Gavin Williams <[email protected]> wrote: > Any opinions out there??? > > Cheers > Gavin > > On Sunday, 3 February 2013 13:25:21 UTC, Gavin Williams wrote: >> >> Afternoon all >> >> I'm working on the next feature needed for our Netapp Network device >> module, this time adding support for NFS export security options. >> >> The current code is here: Provider and Type. >> As you can see, it's currently a fairly simple provider, with just a >> create, destroy and exists?... >> The type has got a couple of params that are part of the core create... >> >> My current thought is to create some additional properties to handle the >> additional options required on the NFS Export call... >> The additional options are: read-only, read-write, root and sec-flavor. >> Reason I want them to be properties is that the export options can and >> will change... read-only, read-write and root will also be taking arrays >> which will need to be iterated in the provider getters/setters... >> >> Anyhow, that side of things is fairly easy... However the thing that >> complicates things is that whilst the properties are all handled by separate >> getters/setters, I only wanna execute one call against the Network device... >> So seems ideal for a flush style provider... >> >> Is that a sensible approach? Or is there a better method? >> >> Cheers >> Gavin > > -- > You received this message because you are subscribed to the Google Groups > "Puppet Developers" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/puppet-dev?hl=en. > For more options, visit https://groups.google.com/groups/opt_out. > > -- You received this message because you are subscribed to the Google Groups "Puppet Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/puppet-dev?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
