-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.sh
executable file
·377 lines (336 loc) · 9.56 KB
/
setup.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
#!/bin/bash
###############################################################################
## Metro Automation Engine Setup
##
## Script to install packages required for Nuage Metro Automation Engine. Safe
## to execute multiple times
###############################################################################
###############################################################################
# Configurable parameters
###############################################################################
LOG=./setup.log
###############################################################################
# Global variables
###############################################################################
#
# Flag for final state. Gets set if there is a failure in installing any of
# the required components
#
FAILED=0
#
# Column number to place the status message
#
RES_COL=72
#
# Command to move out to the configured column number
#
MOVE_TO_COL="echo -en \\033[${RES_COL}G"
#
# Command to set the color to SUCCESS (Green)
#
SETCOLOR_SUCCESS="echo -en \\033[1;32m"
#
# Command to set the color to FAILED (Red)
#
SETCOLOR_FAILURE="echo -en \\033[1;31m"
#
# Command to set color to SKIPPED (Cyan)
#
SETCOLOR_SKIPPED="echo -en \\033[1;36m"
#
# Command to set the color back to normal
#
SETCOLOR_NORMAL="echo -en \\033[0;39m"
#
# Directories
#
CURRENT_DIR=`pwd`
INVENTORY_DIR=$CURRENT_DIR/src/inventory
###############################################################################
# Command usage
###############################################################################
function usage {
echo ""
echo "Setup for Nuage Networks Metro Automation Engine (MetroAE)"
echo ""
echo "Installs all required libraries for MetroAE. See README.md for"
echo "more information."
echo ""
echo "Usage:"
echo " setup.sh [options]"
echo ""
echo "Options:"
echo " -h, --help: Displays this help."
echo " --set-group <group>: Sets the ownership of inventory and logs to specified"
echo " group so that other users in the group can access"
echo " these files."
}
###############################################################################
# PrettyPrint green [ OK ] message
###############################################################################
function echo_success() {
$MOVE_TO_COL
echo -n "["
$SETCOLOR_SUCCESS
echo -n $" OK "
$SETCOLOR_NORMAL
echo -n "]"
echo -ne "\r"
echo " [ OK ]" >> $LOG
return 0
}
###############################################################################
# PrettyPrint red [ FAILED ] message. Also sets the FAILED global variable
###############################################################################
function echo_failure() {
$MOVE_TO_COL
echo -n "["
$SETCOLOR_FAILURE
echo -n $" ERR "
$SETCOLOR_NORMAL
echo -n "]"
echo -ne "\r"
echo " [ FAILED ]" >> $LOG
FAILED=1
return 1
}
###############################################################################
# PrettyPrint Cyan [ SKIPPED ] message
###############################################################################
function echo_skipped() {
$MOVE_TO_COL
echo -n "["
$SETCOLOR_SKIPPED
echo -n $" SKIP"
$SETCOLOR_NORMAL
echo -n "]"
echo -ne "\r"
echo " [ SKIPPED ]" >> $LOG
return 0
}
###############################################################################
# Check the passed in return value and print success or failure
# param: return_code
###############################################################################
check_retcode() {
if [ $1 -eq 0 ]
then
echo_success
else
echo_failure
fi
echo
}
###############################################################################
# Print a message on STDOUT and $LOG
# param: message
###############################################################################
function print() {
echo $*;
echo $* >> $LOG
}
###############################################################################
# Print a message on STDOUT without newline. Print the message in $LOG
# param: message
###############################################################################
function printn() {
echo -n $*;
echo $* >> $LOG
}
###############################################################################
# Check if an executable exists
# param: executable
###############################################################################
function exists() {
printn "Checking if $1 exists... ";
which "*" &> $LOG;
check_retcode $?;
}
###############################################################################
# Check if user executing the script has root privileges
###############################################################################
function check_user_privilege() {
printn "Checking user privileges... ";
if [[ $UID -ne 0 ]]
then
echo_failure
else
echo_success
fi
echo
}
###############################################################################
# Check if OS is release 7.x
###############################################################################
function check_os_version() {
printn "Checking OS version... "
ver=`rpm -q --whatprovides /etc/redhat-release | tr "[:upper:]" "[:lower:]"`
echo "DBG: ver=$ver" >> $LOG
if [[ $ver == *"7."* ]]
then
echo_success
else
echo_failure
fi
echo
}
###############################################################################
# Export HTTPS_PROXY for yum updates if set in /etc/yum.conf
###############################################################################
set_https_proxy() {
printn "Setting HTTP_PROXY from /etc/yum.conf... "
# The ^proxy is to skip any commened proxy config line
grep_out=`grep ^proxy /etc/yum.conf`
if [ -z "$grep_out" ]
then
echo_skipped
else
https_proxy=`grep ^proxy /etc/yum.conf | cut -d= -f2`
export HTTP_PROXY=$https_proxy
export HTTPS_PROXY=$https_proxy
print "($https_proxy)"
echo_success
fi
}
###############################################################################
# Install the yum packages defined in yum_requirements.txt when 'yum'
# is available on the OS.
# Exits gracefully if package already exists
###############################################################################
yum_install() {
if hash yum 2>/dev/null; then
IFS=$'\n'
for i in $(cat yum_requirements.txt)
do
unset IFS
printn "Installing $i..."
yum -y install "$i" >> $LOG 2>&1
check_retcode $?
done
fi
}
###############################################################################
# Install the apt packages defined in apt_requirements.txt when 'apt'
# is available on the OS.
# Exits gracefully if package already exists
###############################################################################
apt_install() {
if hash apt 2>/dev/null; then
IFS=$'\n'
for i in $(cat apt_requirements.txt)
do
unset IFS
printn "Installing $i..."
apt -y install "$i" >> $LOG 2>&1
check_retcode $?
done
fi
}
###############################################################################
# Install the pip modules defined in pip_requirements.txt.
# Exits gracefully if module already exists
###############################################################################
pip_install() {
IFS=$'\n'
for i in $(cat pip_requirements.txt)
do
unset IFS
printn "Installing $i..."
pip install "$i" >> $LOG 2>&1
check_retcode $?
done
}
###############################################################################
# Setup tab-completion
###############################################################################
function setup_tab_completion() {
printn "Setting up tab-completion... ";
if [[ ! -d /etc/bash_completion.d/ ]]; then
mkdir /etc/bash_completion.d/
fi
cp src/tab-completion-metroae.sh /etc/bash_completion.d/
if [[ $? -ne 0 ]]
then
echo_failure
else
echo_success
fi
echo
}
###############################################################################
# Main function
###############################################################################
function main() {
rm -f $LOG
echo ""
print "Setting up Nuage Metro Automation Engine"
echo ""
# Make sure script is being run as root or with sudo
check_user_privilege
# Exit gracefully if there is not enouch privilages
if [[ $FAILED -ne 0 ]]
then
echo ""
echo ""
print "This script has to be run as root or with root privileges. Try again as root or with sudo"
echo ""
echo ""
exit 1
fi
# set HTTP_PROXY
set_https_proxy
# yum packages
yum_install
# apt packages
apt_install
# pip packages
pip_install
# tab-completion
setup_tab_completion
# Check for any failures and print appropriate message
if [[ $FAILED -ne 0 ]]
then
echo ""
echo ""
print "There appears to be some errors. Please check $LOG for details"
echo ""
echo ""
exit 1
else
echo ""
print "Setup complete!"
echo ""
exit 0
fi
}
#
# Arg processing
#
POSITIONAL=()
while [[ $# -gt 0 ]]
do
key="$1"
case $key in
-h|--help)
usage
exit 0
;;
--set-group)
GROUP="$2"
touch ansible.log
chgrp $GROUP ansible.log
touch metroae.log
chgrp $GROUP metroae.log
chgrp -R $GROUP $INVENTORY_DIR
shift # past argument
shift # past value
;;
*) # unknown option
POSITIONAL+=("$1") # save it in an array for later
shift # past argument
;;
esac
done
set -- "${POSITIONAL[@]}" # restore positional parameters
# Entry
main