You can't do that, as the IF code is resolved by the puppet master before 
delivering the compiled catalog to the client.  It looks like you want to just 
make a shell script, push it to the client and run it there.
        File { myshellscript: …, notify->Exec['myshellscript'] }
        Exec { myshellscript: …}

On Sep 27, 2011, at 10:52 AM, Damien Bridges wrote:
> Does anyone know how to add bash code to the exec resource?  I was
> thinking I could add it to the command section.  I thought I could run
> the code after I put the link command and options in.  However, it
> didn't work.  My bash code has 'if' statements with $ signs in it.  I
> want to move block to a directory with its version so it can be sym
> linked to /block.
> move-block () {
> if [[ -s /block/block && ! -h /block ]]; then
>          VERSION= /block/block -v | grep -oE
> "[0-9] {1,4}. [0-9] {1,3}. [0-9] {1,4}. [0-9] {1,4}"
>                               RENAMED_DIR=/block_$VERSION
>                               echo; echo "Moving System to
> $RENAMED_DIR"
>                               rm -rf $RENAMED_DIR
>                              mv /block $RENAMED_DIR
>         fi
> 
> 
> Thanks in advance,
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Puppet Users" group.
> To post to this group, send email to puppet-users@googlegroups.com.
> To unsubscribe from this group, send email to 
> puppet-users+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/puppet-users?hl=en.
> 

-- 
Jo Rhett
Net Consonance : consonant endings by net philanthropy, open source and other 
randomness

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to