-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpuppet_check_syntax_fast.sh
executable file
·163 lines (152 loc) · 3.39 KB
/
puppet_check_syntax_fast.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
#!/usr/bin/env bash
repo_dir="$(dirname $0)/.."
. "${repo_dir}/bin/functions"
PATH=/opt/puppetlabs/puppet/bin:$PATH
PUPPET=$(which puppet)
ERB=$(which erb)
RUBY=$(which ruby)
R10K=$(which r10k)
BASH=$(which bash)
global_exit=0
filter=' grep -v .js '
check=${1:-all}
check_chars () {
if [ -n ${PUPPET} ]; then
echo_title "Checking for pesky non printable characters in files."
grep -I -H -P -n "[\xa0]" --color=yes -r * | $filter |tr '\302\102' 'X'
fi
}
check_manifests () {
if [ ! -z ${PUPPET} ]; then
echo_title "Validating Manifests in site directory"
for i in $(find site -name '*.pp')
do
manifests="$manifests $i"
done
echo -ne "$manifests - "
err=$(${PUPPET} parser validate $manifests 2>&1)
if [ $? = 0 ]; then
echo_success "OK"
else
echo_failure "ERROR"
echo $err
global_exit=1
fi
else
echo_warning "puppet command not found"
fi
}
check_yaml () {
if [ ! -z ${RUBY} ]; then
echo_title "Validating YAML files in hieradata/"
for i in $(find hieradata -name "*.yaml")
do
echo -ne "$i - "
err=$(${RUBY} -e "require 'yaml'; YAML.parse(File.open('$i'))" 2>&1)
if [ $? = 0 ]; then
echo_success "OK"
else
echo_failure "ERROR"
echo $err
global_exit=1
fi
done
else
echo_warning "ruby not found."
fi
if [ ! -z ${RUBY} ]; then
echo_title "Validating YAML files in modules data"
files=$(find site/ modules/psick -name "*.yaml")
while read -r i; do
echo -ne "$i - "
err=$(${RUBY} -e "require 'yaml'; YAML.parse(File.open('$i'))" 2>&1)
if [ $? = 0 ]; then
echo_success "OK"
else
echo_failure "ERROR"
echo $err
global_exit=1
fi
done <<< "$files"
else
echo_warning "ruby not found."
fi
}
check_erb () {
if [ ! -z ${ERB} ] && [ ! -z ${RUBY} ]; then
echo_title "Validation ERB files in site/ directory"
for i in $(find site -name '*.erb')
do
echo -ne "$i - "
err=$(${ERB} -P -x -T - "${i}" | ${RUBY} -c 2>&1)
if [ $? = 0 ]; then
echo_success "OK"
else
echo_failure "ERROR"
echo $err
global_exit=1
fi
done
else
echo_warning "erb not found."
fi
}
check_puppetfile () {
if [ ! -z ${R10K} ]; then
echo_title "Validating Puppetfile syntax"
echo -ne "Puppetfile - "
err=$(${R10K} puppetfile check 2>&1)
if [ $? = 0 ]; then
echo_success "OK"
else
echo_failure "ERROR"
echo $err
global_exit=1
fi
else
echo_warning "r10k not found."
fi
}
check_bash () {
if [ ! -z ${BASH} ]; then
echo_title "Validating bash scripts syntax"
for i in $(find bin/ -name '*.sh')
do
echo -ne "$i - "
err=$(${BASH} -n "${i}" | ${RUBY} -c 2>&1)
if [ $? = 0 ]; then
echo_success "OK"
else
echo_failure "ERROR"
echo $err
global_exit=1
fi
done
else
echo_warning "bash not found ?!?"
fi
}
case $check in
chars) check_chars ;;
manifests) check_manifests ;;
yaml) check_yaml ;;
erb) check_erb ;;
puppetfile) check_puppetfile ;;
bash) check_bash ;;
all)
check_chars
check_manifests
check_yaml
check_erb
check_puppetfile
check_bash
;;
all_but_chars)
check_manifests
check_yaml
check_erb
check_puppetfile
check_bash
;;
esac
exit $global_exit