-
Notifications
You must be signed in to change notification settings - Fork 12
/
bootstrap0.sh
executable file
·205 lines (194 loc) · 7.59 KB
/
bootstrap0.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
#!/bin/bash
#
# This file should remain OS independent
# Bootstrap0: designed for "pristine" systems (aka no rocks)
# NOTE: This should not be used on ANY Rocks appliance.
#
# $Id: bootstrap0.sh,v 1.18 2012/11/27 00:48:00 phil Exp $
#
# @Copyright@
#
# Rocks(r)
# www.rocksclusters.org
# version 6.2 (SideWinder)
# version 7.0 (Manzanita)
#
# Copyright (c) 2000 - 2017 The Regents of the University of California.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice unmodified and in its entirety, this list of conditions and the
# following disclaimer in the documentation and/or other materials provided
# with the distribution.
#
# 3. All advertising and press materials, printed or electronic, mentioning
# features or use of this software must display the following acknowledgement:
#
# "This product includes software developed by the Rocks(r)
# Cluster Group at the San Diego Supercomputer Center at the
# University of California, San Diego and its contributors."
#
# 4. Except as permitted for the purposes of acknowledgment in paragraph 3,
# neither the name or logo of this software nor the names of its
# authors may be used to endorse or promote products derived from this
# software without specific prior written permission. The name of the
# software includes the following terms, and any derivatives thereof:
# "Rocks", "Rocks Clusters", and "Avalanche Installer". For licensing of
# the associated name, interested parties should contact Technology
# Transfer & Intellectual Property Services, University of California,
# San Diego, 9500 Gilman Drive, Mail Code 0910, La Jolla, CA 92093-0910,
# Ph: (858) 534-5815, FAX: (858) 534-7345, E-MAIL:[email protected]
#
# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS''
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# @Copyright@
#
# $Log: bootstrap0.sh,v $
# Revision 1.18 2012/11/27 00:48:00 phil
# Copyright Storm for Emerald Boa
#
# Revision 1.17 2012/10/22 16:35:26 clem
# some more required packages to compile python 2.4.3 on rocks 5
#
# Revision 1.16 2012/10/19 23:11:27 clem
# The "Why did you do that?" saga...
#
# Obviously patching anaconda did not work.
# Python snippet in the kickstart file are still failing (obviously :-()
#
# This time I try upgrading python with the same source code used by the
# original python from RH (heavily patched), let's hope The Force will be
# with me this time...
#
# Revision 1.15 2012/10/03 22:49:00 clem
# Make the code a little clearer
# No need to set lo twice
#
# Revision 1.14 2012/10/03 16:48:58 clem
# Need wget and genisoimage to properly boostrap on a minimal centos 6.3
#
# Revision 1.13 2012/05/06 05:48:07 phil
# Copyright Storm for Mamba
#
# Revision 1.12 2012/04/23 18:15:03 clem
# we need redhat-lsb to determine CentOS version
#
# Revision 1.11 2012/04/12 21:27:12 phil
# Some fixes for 5 -- tcl for environment-modules bootstrap
#
# Revision 1.10 2012/04/05 20:59:24 phil
# Now call prepdevel.sh.
#
# Revision 1.9 2012/02/01 19:59:50 phil
# add foundation-python-setuptools. Source rocks-binaries.sh at the appropriate place
#
# Revision 1.8 2012/01/04 22:51:29 phil
# Reverse last two steps. Can't use install_os_packages macro until the
# buildhost is in the database
#
# Revision 1.7 2011/11/07 22:34:40 phil
# add the default distro
#
# Revision 1.6 2011/11/04 20:41:30 phil
# full pathnames for no ambiguity
#
# Revision 1.5 2011/11/03 22:48:15 phil
# More packages for non-Rocks build system bootstrap
#
# Revision 1.4 2011/11/03 21:03:13 phil
# Small tweaks and typo.
#
# Revision 1.3 2011/11/02 21:10:54 phil
# Some tweaks and updates to bootstrap0 so that bootstrap works properly
#
# Revision 1.2 2011/11/02 16:43:38 phil
# In bootstrap0, create an OS and Updates roll after the Rocks database is up and running.
#
# Revision 1.1 2011/11/02 05:08:56 phil
# First take on bootstrap0. Packages, command line and processing to
# bring up the rocks database on a non-Rocks installed host.
# Also reworked generation of post sections to work more like Solaris:
# Each post section now creates a shell script with the desired interpreter.
# Report post command creates a shell script from the post section of a
# (set of) node xml files.
#
#
. src/devel/devel/src/roll/etc/bootstrap-functions.sh
# if downloading binaries files failed we shout stop now
# no point in going on with compilation
if [ "$?" != "0" ]; then
echo Failed to import bootstrap functions
echo Likely we had some problem downloading Rocks binary files
exit 1
fi
# 0. directory structure
#
if [ ! -d /export/rocks/install/rolls ]; then
mkdir -p /export/rocks/install/rolls
fi
# 1. other system packages (need similar for solaris)
if [ `./_os` == "linux" ]; then
#needed to run rocks create mirror
EXTRA_PACKAGES="wget genisoimage"
#needed to detect OS version
EXTRA_PACKAGES="$EXTRA_PACKAGES redhat-lsb"
# needed to download the binary files
EXTRA_PACKAGES="$EXTRA_PACKAGES coreutils curl"
# packages needed for mysql dependency resolution
EXTRA_PACKAGES="$EXTRA_PACKAGES perl-DB perl-Time-HiRes perl-GD"
# packages needed for gobject-introspection numpy pygobject
EXTRA_PACKAGES="$EXTRA_PACKAGES flex bison glib2-devel pycairo-devel"
EXTRA_PACKAGES="$EXTRA_PACKAGES cairo-gobject cairo-gobject-devel Cython"
yum -y install rpm-build rpm-devel gcc gcc-c++ ncurses-devel swig glib2 glib2-devel openssl-devel pygobject2 pygobject2-devel cairo cairo-devel createrepo apr apr-devel expat-devel cmake $EXTRA_PACKAGES
fi
# 2. Foundation Packages
compile_and_install foundation-mysql
compile_and_install foundation-python
compile_and_install foundation-python-setuptools
compile_and_install foundation-libxml2
compile_and_install foundation-python-xml
compile_and_install foundation-python-extras
compile_and_install foundation-PyYAML
compile_and_install foundation-rcs
# 3. Rocks config, pylib, and kickstart, commands
compile admin
install rocks-admin
compile config
install rocks-config
compile_and_install rocks-pylib
compile_and_install rocks-gen
compile_and_install rocks-profile
compile devel
install rocks-devel
# 4. Make sure we have updated paths
. /etc/profile.d/rocks-binaries.sh
# 5. Bootstrap the database
tmpfile=$(/bin/mktemp)
/bin/cat nodes/database.xml nodes/database-schema.xml nodes/database-sec.xml | /opt/rocks/bin/rocks report post attrs="{'hostname':'', 'HttpRoot':'/var/www/html','os':'linux'}" > $tmpfile
if [ $? != 0 ]; then
echo "FAILURE to create script for bootstrapping the Database"
exit -1
fi
/bin/sh $tmpfile
/bin/rm $tmpfile
# 6. Prep as if this were a devel server
# this creates OS and updates roll, adds some appliance definitions,
# and adds various packages needed for bootstrapping.
./prepcore.sh