This repository has been archived by the owner on Feb 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup-node.sh
125 lines (107 loc) · 2.48 KB
/
setup-node.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
#!/bin/bash
# Setup dhcp client and hostname
# setup variables
source ./oo-install.conf
if [ "$1" == "--slow" ] ; then
SLOW="yes"
fi
if ! [ "$OPENSHIFT_SOURCE" == "distro" ] ; then
if [ "$SLOW" == "yes" ] ; then
echo "Setup Yum Repos"
echo " Hit Enter to continue"
read testinput
fi
sh common-repo.sh
fi
if [ "$SLOW" == "yes" ] ; then
echo "Yum Update"
echo " Hit Enter to continue"
read testinput
fi
yum clean all ; yum -y update
if [ "$SLOW" == "yes" ] ; then
echo "Verify basic packages are installed"
echo " Hit Enter to continue"
read testinput
fi
sh common-packages.sh
if [ "$SLOW" == "yes" ] ; then
echo "Setup date and time"
echo " Hit Enter to continue"
read testinput
fi
sh common-date-time.sh
if [ "$SLOW" == "yes" ] ; then
echo "Setup host dhcp setting"
echo "Set hostname"
echo " Hit Enter to continue"
read testinput
fi
sh node-dhcp.sh
if [ "$SLOW" == "yes" ] ; then
echo "Setup host dhcp setting"
echo "Set hostname"
echo " Hit Enter to continue"
read testinput
fi
sh node-hostname.sh
if [ "$SLOW" == "yes" ] ; then
echo "Setup mcollective"
echo " Hit Enter to continue"
read testinput
fi
sh node-mcollective.sh
if [ "$SLOW" == "yes" ] ; then
echo "Install and setup the node application"
echo " Hit Enter to continue"
read testinput
fi
sh node-app-install.sh
if [ "$SLOW" == "yes" ] ; then
echo "Setup pam"
echo " Hit Enter to continue"
read testinput
fi
sh node-pam.sh
if [ "$SLOW" == "yes" ] ; then
echo "Setup cgroups"
echo " Hit Enter to continue"
read testinput
fi
sh node-cgroups.sh
if [ "$SLOW" == "yes" ] ; then
echo "Setup quota"
echo " Hit Enter to continue"
read testinput
fi
sh node-quota.sh
if [ "$SLOW" == "yes" ] ; then
echo "Setup selinux"
echo " Hit Enter to continue"
read testinput
fi
sh node-selinux.sh
if [ "$SLOW" == "yes" ] ; then
echo "Setup system settings"
echo " Hit Enter to continue"
read testinput
fi
sh node-system.sh
if [ "$SLOW" == "yes" ] ; then
echo "Setup ssh"
echo " Hit Enter to continue"
read testinput
fi
sh node-ssh.sh
if [ "$SLOW" == "yes" ] ; then
echo "Setup port-proxy"
echo " Hit Enter to continue"
read testinput
fi
sh node-proxy.sh
if [ "$SLOW" == "yes" ] ; then
echo "Configure node application"
echo " Hit Enter to continue"
read testinput
fi
sh node-app-config.sh