forked from luismartingil/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vagrant_manager.sh
executable file
·51 lines (47 loc) · 932 Bytes
/
vagrant_manager.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
#!/bin/bash
#
# Bash script to start/stop my local vagrant boxes.
# Author: luismartingil
# Year: 2012
#
# Root folder where the vagrant boxes are stored.
ROOT=/Volumes/lmartin_data/vagrant/
# This ARRAY contains the folder names of the vagrant boxes.
ARRAY=(
100ua-debian-squeeze-amd64
101ua-pjsua-debian-squeeze-amd64
102ua-pjsua-debian-squeeze-amd64
103ua-pjsua-debian-squeeze-amd64
)
# Let's grab the user's input param.
case $@ in
start)
cmd=(vagrant up)
;;
stop)
cmd=(vagrant halt)
;;
resume)
cmd=(vagrant resume)
;;
suspend)
cmd=(vagrant suspend)
;;
status)
cmd=(vagrant status)
;;
*)
echo 'Please select start/stop/resume/suspend/status'
exit 0
;;
esac
# Now we now what to do and where.
# Don't forget that vagrant {up, halt} MUST be sequential.
for i in "${ARRAY[@]}"
do
echo '========='
echo $ROOT$i
cd $ROOT$i
"${cmd[@]}"
echo ' '
done