Skip to content
This repository was archived by the owner on Feb 25, 2020. It is now read-only.

Commit 902d1db

Browse files
author
varac
committedFeb 12, 2014
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.
1 parent 6255e58 commit 902d1db

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
 

‎puppet/bin/apply_on_node.sh

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#!/bin/sh
2+
3+
# Script to use on a node for debugging
4+
# Usage: ./apply_on_node.sh <puppet parameters>
5+
#
6+
# Example: ./apply_on_node.sh --debug --verbose
7+
8+
ROOTDIR='/srv/leap'
9+
PLATFORM="$ROOTDIR"
10+
MODULEPATH="$PLATFORM/puppet/modules"
11+
LOG=/var/log/leap.log
12+
13+
# example tags to use
14+
#TAGS='--tags=leap_base,leap_service,leap_slow'
15+
#TAGS='--tags=leap_base,leap_slow'
16+
#TAGS='--tags=leap_base,leap_service'
17+
18+
#######
19+
# Setup
20+
#######
21+
22+
puppet apply -v --confdir $PLATFORM/puppet --libdir $PLATFORM/puppet/lib --modulepath=$MODULEPATH $PLATFORM/puppet/manifests/setup.pp $TAGS $@ |tee $LOG 2>&1
23+
24+
#########
25+
# site.pp
26+
#########
27+
28+
puppet apply -v --confdir $PLATFORM/puppet --libdir $PLATFORM/puppet/lib --modulepath=$MODULEPATH $PLATFORM/puppet/manifests/site.pp $TAGS $@ |tee $LOG 2>&1
29+
30+

0 commit comments

Comments
 (0)