Puppet does not know what happens in an Exec resource, so it has one foot
in and one foot outside of the graph and impairs puppet's ability to define
state consistently and enforce idempotency. Because of these, Execs are the
least desirable resource type. Think of them as a "break in case of
emergency" type resource. Only use them if no other resource will work.

Some alternatives might include:
* Repackage the RPMs to include appropriate post-install scripts, so there
is nothing to exec afterward
* Use the correct resource types to achieve the same goal. If the command
would modify some file, use a File resource to manage the file's
permissions, contents, etc. via puppet.
* If you have multiple commands to run and there is absolutely no way to
use other puppet resource types to obtain the same results, then create a
script that is pushed down as a Package or File resource, then Exec that
file. File+Exec is usually better than a bunch of individual Execs, for
both better modeling of state, and your sanity (esp when dealing with
escaped strings, any sort of logic between Execs, and to have a logical
view of what the Execs are doing).

Again, Execs should generally be your last resort. Find another way when
possible!


Rob Nelson
rnels...@gmail.com

On Fri, Apr 22, 2016 at 1:24 AM, <bapi.l...@cloudwick.com> wrote:

> Hi all,
>
>  I am building this module which has rpm packages in it and execs commands.
> What is the best way to build this module.. does writing numerous execs is
> a good way to start with??
>
> Im finding my way to work with puppet ... any help is greatly
> appreciated!! :)
>
> Thank You
>
> --
> 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 puppet-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/puppet-users/8d95be4c-d2bb-44c0-913e-5dc96cf0f033%40googlegroups.com
> <https://groups.google.com/d/msgid/puppet-users/8d95be4c-d2bb-44c0-913e-5dc96cf0f033%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/CAC76iT9kvybZ036cbKe%2BXwYTPPf_CwZmg25X46qPFp-US_g8OQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to