On Thu, Sep 17, 2015 at 3:00 PM, jcbollinger <john.bollin...@stjude.org> wrote:
>
>
> On Wednesday, September 16, 2015 at 7:39:32 AM UTC-5, Sans wrote:
>>
>> Hi there,
>>
>> I got to solve a "rare" issue here which I'm running out of ideas for. In
>> our manifest, we do some conditional  git pull (using vcsrepo forgemodule)
>> based on a Hiera variable that set either true or false. We keep the value
>> as false i.e. no git-pull by default but want to set it true, on the fly
>> temporarily for onetime run. Is there anyway to override hiera value when
>> running puppet agent from the command-line on the run-time?
[snip]
>
>
> It's unclear from where you want to control this one-off behavior
> alteration.  If from the target node, then you want to rely on a custom
> fact.  There are several ways to write a fact whose value you can easily
> influence at run time, and there are many ways you can condition the
> declarations in your manifests and the data retrieved from Hiera on the
> value of a given fact.

It's can be done easier than that, although facts is the right
track...  You don't actually have to create a fact, you could just
test for the existence of it...

class mything (
  $pull_repo, # sourced from hiera mything::pull_repo
) {

  $do_pull = $::pull_repo ? {
    undef => $pull_repo,
    default => $::pull_repo,
  }
}

Note the use of top level scoping there - by default $::pull_repo will
be undef and the value from hiera used, you can then dynamically
create your fact on the fly by calling puppet agent with...

FACTER_pull_repo=yes puppet agent -t

Im not sure how you would tie that into the mcollective job, but it
shouldn't be too hard....

Craig

-- 
Enviatics | Automation and configuration management
http://www.enviatics.com | @Enviatics
Puppet Training http://www.enviatics.com/training/

-- 
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/CACxdKhF22iV7SyUgrO-YKpv_3t9btp62PKvmOBo4u2yar5NGEQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to