-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinstaller.sh
executable file
·174 lines (149 loc) · 4.9 KB
/
installer.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
#!/bin/bash
echo 'WARNING: please follow the "README.md" before run this script'
if [ "$EUID" -ne 0 ]; then
echo 'Please run as root'
exit
fi
function controller () {
echo 'NOTE: if you have created network_var.sh before, select "n" '
read -p 'Do you want to create network_var.sh [Y/n]? ' netvar
if [[ "$netvar" = "Y" ]]; then
./network/network.sh
elif [[ "$netvar" = "n" ]]; then
:
else
echo 'Command not found'
:
fi
echo 'NOTE: if you have created user_var.sh before, select "n" '
read -p 'Do you want to create user_var.sh [Y/n]? ' uservar
if [[ "$uservar" = "Y" ]]; then
echo '=============================='
echo '[1] One password to all services'
echo '[2] Different password for each services'
read -p '>> ' samepass
if [ "$samepass" = "1" ]; then
source ./user/user.sh
same_pass
elif [ "$samepass" = "2" ]; then
source ./user/user.sh
different_pass
fi
elif [[ "$uservar" = "n" ]]; then
:
else
echo 'Command not found'
:
fi
while [ true ]; do
echo '=============================='
echo 'SELECT SERVICE TO BE INSTALLED: '
echo '=============================='
echo '[1] Prerequisites'
echo '[2] Keystone'
echo '[3] Glance'
echo '[4] Nova - controller'
echo '[5] Neutron - controller'
echo '[6] Horizon'
echo '[7] Add Nova compute service'
echo '[8] Add Neutron compute service'
echo '[0] Exit'
read -p '>> ' service
if [ $service -eq '1' ]; then
echo 'LOG: Install Prerequisites'
./service/prerequisites-controller.sh
elif [ $service -eq '2' ]; then
echo 'LOG: Install Keystone'
./service/keystone.sh
elif [ $service -eq '3' ]; then
echo 'LOG: Install Glance'
./service/glance.sh
elif [ $service -eq '4' ]; then
echo 'LOG: Install Nova - controller'
./service/nova-controller.sh
elif [ $service -eq '5' ]; then
echo 'LOG: Install Neutron - controller'
./service/neutron-controller.sh
elif [ $service -eq '6' ]; then
echo 'LOG: Install Horizon'
./service/horizon.sh
elif [ $service -eq '7' ]; then
echo 'LOG: Add Nova compute service'
./service/nova-add-compute.sh
elif [ $service -eq '8' ]; then
echo 'LOG: Add Neutron compute service'
./service/neutron-add-compute.sh
elif [ $service -eq '0' ]; then
echo 'Program Exited'
exit
else
echo 'Command not found'
fi
done
}
function compute () {
echo 'NOTE: if you have created network_var.sh before, select "n" '
read -p 'Do you want to create network_var.sh [Y/n]? ' netvar
if [[ "$netvar" = "Y" ]]; then
./network/network.sh
elif [[ "$netvar" = "n" ]]; then
:
else
echo 'Command not found'
:
fi
echo 'NOTE: if you have created user_var.sh before, select "n" '
read -p 'Do you want to create user_var.sh [Y/n]? ' uservar
if [[ "$uservar" = "Y" ]]; then
echo '=============================='
echo '[1] One password to all services'
echo '[2] Different password for each services'
read -p '>> ' samepass
if [ "$samepass" = "1" ]; then
source ./user/user.sh
same_pass
elif [ "$samepass" = "2" ]; then
source ./user/user.sh
different_pass
fi
elif [[ "$uservar" = "n" ]]; then
:
else
echo 'Command not found'
:
fi
while [ true ]; do
echo '=============================='
echo 'SELECT SERVICE TO BE INSTALLED: '
echo '=============================='
echo '[1] Prerequisites'
echo '[2] Nova - compute'
echo '[3] Neutron - compute'
echo '[0] Exit'
read -p '>> ' service
if [ $service -eq '1' ]; then
echo 'LOG: Install Prerequisites'
./service/prerequisites-compute.sh
elif [ $service -eq '2' ]; then
echo 'LOG: Install Nova - compute'
./service/nova-compute.sh
elif [ $service -eq '3' ]; then
echo 'LOG: Install Neutron - compute'
./service/neutron-compute.sh
elif [ $service -eq '0' ]; then
echo 'Program Exited'
exit
else
echo 'Command not found'
fi
done
}
echo 'Select the type of server to be installed: '
echo '[1] Controller'
echo '[2] Compute'
read -p '>> ' server_type
if [ $server_type = '1' ]; then
controller
elif [ $server_type = '2' ]; then
compute
fi