diff options
author | varac <varacanero@zeromail.org> | 2014-02-12 12:38:36 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2014-02-12 12:38:36 +0100 |
commit | 902d1dbcbd0761f0dea9c2af1b04d69673d65a9e (patch) | |
tree | e8e52f712e745fc0f0082805c07b7d448763e172 | |
parent | 6255e58bf9ff3489bf2707bc2be9759ec5c7db68 (diff) |
added puppet/bin/apply_on_node.sh to debug puppet on node
this is useful for debugging puppet with higher verbosit or
debug output. i put it into puppet/bin/ because puppet/ will
get synced to a node.
-rwxr-xr-x | puppet/bin/apply_on_node.sh | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/puppet/bin/apply_on_node.sh b/puppet/bin/apply_on_node.sh new file mode 100755 index 00000000..09e5b035 --- /dev/null +++ b/puppet/bin/apply_on_node.sh @@ -0,0 +1,30 @@ +#!/bin/sh + +# Script to use on a node for debugging +# Usage: ./apply_on_node.sh <puppet parameters> +# +# Example: ./apply_on_node.sh --debug --verbose + +ROOTDIR='/srv/leap' +PLATFORM="$ROOTDIR" +MODULEPATH="$PLATFORM/puppet/modules" +LOG=/var/log/leap.log + +# example tags to use +#TAGS='--tags=leap_base,leap_service,leap_slow' +#TAGS='--tags=leap_base,leap_slow' +#TAGS='--tags=leap_base,leap_service' + +####### +# Setup +####### + +puppet apply -v --confdir $PLATFORM/puppet --libdir $PLATFORM/puppet/lib --modulepath=$MODULEPATH $PLATFORM/puppet/manifests/setup.pp $TAGS $@ |tee $LOG 2>&1 + +######### +# site.pp +######### + +puppet apply -v --confdir $PLATFORM/puppet --libdir $PLATFORM/puppet/lib --modulepath=$MODULEPATH $PLATFORM/puppet/manifests/site.pp $TAGS $@ |tee $LOG 2>&1 + + |