-
Notifications
You must be signed in to change notification settings - Fork 6
/
provision.sh
479 lines (451 loc) · 12.2 KB
/
provision.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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
#!/bin/sh
# A script to install SparForte build dependences.
# by Ken O. Burtch
#
# This Bourne shell script was written on Bash but should support most
# Bourne shell variants, including ksh. FreeBSD will fail using the
# default tcsh (which is based on csh and is not Bourne shell compatible).
# ----------------------------------------------------------------------------
#set -eu
DISTRO=""
TMP=""
while [ $# -gt 0 ] ; do
TMP=`echo "$1" | cut -d= -f1`
if [ -z "$TMP" ] ; then
$TMP="$1"
fi
case "$TMP" in
-h|--help)
echo "SparForte provision script"
echo
echo "A simple script to attempt to identify your operating system and"
echo "install SparForte software dependences needed to build the language."
echo "It is especially useful for deploying virtualized or cloud instances."
echo "You may be prompted for the administrator password."
echo
echo "Additional options:"
#echo " --prefix=PREFIX root installation directory"
echo " --without-bdb do not Berkeley DB"
echo " --without-l10n do not install GNU localization"
echo " --without-locate do not install GNU locate"
echo " --without-memcached do not install memcached"
echo " --without-mysql do not install MySQL/MariaDB"
echo " --without-opengl do not install OpenGL"
echo " --without-pcre do not install PCRE library"
echo " --without-postgres do not install PostgreSQL"
echo " --without-readline do not install GNU readline"
echo " --without-sdl do not install SDL and SDLImage"
echo " --without-sound do not install GStreamer"
echo
echo "Read INSTALL for further information on these options"
exit 0
;;
#--prefix)
# PREFIX=`echo "$1" | cut -d= -f2`
# ;;
--without-bdb)
NO_BDB=1
;;
--without-l10n)
NO_L10N=1
;;
--without-locate)
NO_LOCATE=1
;;
--without-memcached)
NO_MEMCACHED=1
;;
--without-mysql)
NO_MYSQL=1
;;
--without-opengl)
NO_OPENGL=1
;;
--without-pcre)
NO_PCRE=1 # does not do anything as pcre is usually installed by default
;;
--without-postgres)
NO_POSTGRES=1
;;
--without-readline)
NO_READLINE=1
;;
--without-sdl)
NO_SDL=1
;;
--without-sound)
NO_SOUND=1
;;
*)
echo "Unrecognized option $TMP"
exit 192
esac
shift
done
# Runners
# ----------------------------------------------------------------------------
#
# Depending on the environment, sudo may or may not be required to install
# software. For example, a container will not have sudo because there is
# only one user.
# Test for the presence of sudo
HAS_SUDO=
(exec sudo -h >/dev/null 2>&1)
if [ $? -eq 0 ] ; then
HAS_SUDO=1
fi
# Runners functions that use or not use sudo
yum_install () {
if [ -n "$HAS_SUDO" ] ; then
echo $@
sudo -u root dnf install -q -y $@
else
echo $@
dnf install -q -y $@
fi
}
apt_install () {
if [ -n "$HAS_SUDO" ] ; then
sudo -u root apt-get -q -y install $@
else
DEBIAN_FRONTEND=noninteractive apt-get -q -y install $@
fi
}
zypper_install () {
if [ -n "$HAS_SUDO" ] ; then
sudo -u root zypper "--quiet" "--non-interactive" install $@
else
zypper "--quiet" "--non-interactive" install $@
fi
}
# Detect the Linux distribution
# ----------------------------------------------------------------------------
# CentOS/Red hat
RHVERSION=""
if test -f "/etc/redhat-release" ; then
DISTRO="redhat"
TMP=`fgrep " 7." "/etc/redhat-release"`
if [ -n "$TMP" ] ; then
RHVERSION="7"
fi
TMP=`fgrep " 8." "/etc/redhat-release"`
if [ -n "$TMP" ] ; then
RHVERSION="8"
fi
TMP=`fgrep " 9." "/etc/redhat-release"`
if [ -n "$TMP" ] ; then
RHVERSION="9"
fi
fi
if test -f "/etc/SUSE-brand" ; then
DISTRO="suse"
fi
if test -f "/etc/freebsd-update.conf" ; then
DISTRO="freebsd"
if [ "$LOGNAME" != "root" ] ; then
echo "you may need to run this script as root"
fi
fi
# Mint/Ubuntu
if [ -f "/etc/issue" ] ; then
TMP=`fgrep Ubuntu /etc/issue`
if [ "$TMP" != "" ] ; then
DISTRO="ubuntu"
fi
TMP=`fgrep Mint /etc/issue`
if [ "$TMP" != "" ] ; then
DISTRO="ubuntu"
fi
TMP=`fgrep SUSE /etc/issue`
if [ "$TMP" != "" ] ; then
DISTRO="suse"
fi
fi
# Debian
if [ -z "$DISTRO" ] ; then
if test -f "/etc/debian_version" ; then
echo "Debian users"
echo
echo "This script uses sudo. You may need to add your login to the"
echo "sudoers configuration file. Press return to continue."
read TMP
DISTRO="debian"
fi
fi
# Install software dependences
# ----------------------------------------------------------------------------
case "$DISTRO" in
redhat )
if [ -n "$HAS_SUDO" ] ; then
sudo -u root yum list installed | fgrep epel-release >/dev/null
else
yum list installed | fgrep epel-release >/dev/null
fi
if [ $? -eq 1 ] ; then
set -e
if [ -n "$HAS_SUDO" ] ; then
if [ "$RHVERSION" != "7" ] ; then
sudo dnf config-manager --set-enabled
sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm
else
sudo -u root rpm -Uvh http://download.fedoraproject.org/pub/epel/7/x86_64/Packages/e/epel-release-latest-7.noarch.rpm
fi
else
if [ "$RHVERSION" != "7" ] ; then
dnf config-manager --set-enabled
dnf install http://download.fedoraproject.org/pub/epel/7/x86_64/Packages/e/epel-release-latest-7.noarch.rpm
else
rpm -Uvh http://download.fedoraproject.org/pub/epel/7/x86_64/Packages/e/epel-release-latest-7.noarch.rpm
fi
fi
fi
# Containers may not have these
yum_install make
#
yum_install bzip2
yum_install gcc-gnat
yum_install git
yum_install bc
if [ -z "$NO_LOCATE" ] ; then
yum_install mlocate
fi
if [ -z "$NO_SOUND" ] ; then
yum_install gstreamer1
yum_install gstreamer1-devel
fi
if [ -z "$NO_BDB" ] ; then
yum_install libdb-devel
fi
if [ -z "$NO_MYSQL" ] ; then
yum_install mariadb
yum_install mariadb-server
# Unfortunately, dnf doesn't return an error status for something not
# found
TMP=`dnf search mariadb-connector-c-devel 2>&1 | fgrep "No match"`
if [ -z "$TMP" ] ; then
# Newer versions of Red Hat
yum_install mariadb-connector-c-devel
else
# Older versions of Red Hat
yum_install mariadb-devel
fi
fi
if [ -z "$NO_POSTGRES" ] ; then
yum_install postgresql
yum_install postgresql-devel
yum_install postgresql-server
fi
if [ -z "$NO_SDL" ] ; then
if [ "$RHVERSION" != "9" ] ; then
echo "Please provision using --without-sdl. SDL1.2 is not included "
echo "with Red Hat 9"
exit 1
yum_install SDL
# Does not exist with Red Hat 9 but is also included with SDL
yum_install SDL-devel
yum_install SDL_image
fi
if [ -z "$NO_OPENGL" ] ; then
# On Red Hat 9, this will error because SDL-devel does not exist
# SparForte will still build but not SDL will not work.
yum_install SDL_image-devel
yum_install mesa-libGL-devel
yum_install mesa-libGLU-devel
fi
fi
if [ -z "$NO_MEMCACHED" ] ; then
yum_install memcached
fi
if [ -z "$NO_READLINE" ] ; then
yum_install readline-devel
fi
set +e
;;
suse)
set -e
zypper_install make
zypper_install gcc-ada
zypper_install git
zypper_install libopenssl-devel
if [ -z "$NO_LOCATE" ] ; then
zypper_install mlocate
fi
# zypper_install rpmlint
if [ -z "$NO_SOUND" ] ; then
zypper_install gstreamer-devel
fi
if [ -z "$NO_SDL" ] ; then
zypper_install libSDL-devel
zypper_install libSDL_image-devel
fi
if [ -z "$NO_MYSQL" ] ; then
zypper_install libmariadb-devel
fi
if [ -z "$NO_POSTGRES" ] ; then
zypper_install postgresql
zypper_install postgresql-devel
zypper_install postgresql-server-devel # for pg_config
fi
if [ -z "$NO_MEMCACHED" ] ; then
zypper_install memcached
fi
if [ -z "$NO_BDB" ] ; then
zypper_install libdb-4_8-devel
fi
set +e
;;
ubuntu )
set -e
# Containers may not have these
apt_install apt-utils
apt_install ncurses-bin
if [ -z "$NO_PCRE" ] ; then
apt_install libpcre3-dev
fi
#
apt_install libselinux-dev
apt_install bzip2
apt_install gnat
apt_install git
apt_install wget
apt_install bc
if [ -z "$NO_LOCATE" ] ; then
apt_install locate
fi
if [ -z "$NO_BDB" ] ; then
apt_install libdb-dev
fi
if [ -z "$NO_MYSQL" ] ; then
apt_install libmysqlclient-dev
apt_install mysql-server
fi
if [ -z "$NO_POSTGRES" ] ; then
apt_install postgresql-client
apt_install postgresql-server-dev-all
fi
if [ -z "$NO_SOUND" ] ; then
#sudo -u root apt-get -q -y install libgstreamer0.10-dev
apt_install libgstreamer1.0-dev
fi
if [ -z "$NO_SDL" ] ; then
apt_install libsdl1.2-dev
apt_install libsdl-image1.2-dev
fi
if [ -z "$NO_MEMCACHED" ] ; then
apt_install memcached
fi
if [ -z "$NO_READLINE" ] ; then
apt_install libreadline-dev
fi
set +e
;;
debian )
set -e
apt_install libselinux-dev
apt_install bzip2
apt_install gnat
apt_install git
apt_install wget
apt_install bc
apt_install libssl1.1
if [ -z "$NO_LOCATE" ] ; then
apt_install locate
fi
if [ -z "$NO_BDB" ] ; then
apt_install libdb-dev
fi
if [ -z "$NO_MYSQL" ] ; then
set +e
apt_install libmariadb-dev-compat # R Pi 4
if [ $? -ne 0 ] ; then
# Raspberry Pi 3 and older
apt_install libmariadbclient-dev
fi
set -e
apt_install mariadb-server
fi
if [ -z "$NO_POSTGRES" ] ; then
apt_install postgresql-client
apt_install postgresql-server-dev-all
fi
if [ -z "$NO_SOUND" ] ; then
apt_install libgstreamer1.0-dev
fi
if [ -z "$NO_SDL" ] ; then
apt_install libsdl1.2-dev
apt_install libsdl-image1.2-dev
fi
if [ -z "$NO_MEMCACHED" ] ; then
apt_install memcached
fi
if [ -z "$NO_READLINE" ] ; then
apt_install libreadline-dev
fi
if [ -z "$NO_PCRE" ] ; then
apt_install libpcre3-dev
fi
set +e
;;
freebsd )
set -e
echo "y" | pkg install bash
echo "y" | pkg install gmake
echo "y" | pkg install bzip2
echo "y" | pkg install gcc6-aux # Ada support expires 2022-02
# echo "y" | pkg install xmlada
echo "y" | pkg install git
echo "y" | pkg install wget
if [ -z "$NO_MYSQL" ] ; then
# echo "y" | pkg install libmysqlclient-dev
echo "y" | pkg install mysql57-client
echo "y" | pkg install mysql57-server
fi
if [ -z "$NO_POSTGRES" ] ; then
echo "y" | pkg install postgresql12-client
echo "y" | pkg install postgresql12-server
fi
if [ -z "$NO_SOUND" ] ; then
# echo "y" | pkg install postgresql-server-dev-all
echo "y" | pkg install gstreamer1
fi
if [ -z "$NO_SDL" ] ; then
echo "y" | pkg install sdl # libsdl1.2-dev
echo "y" | pkg install sdl_image # libsdl-image1.2-dev
fi
if [ -z "$NO_MEMCACHED" ] ; then
echo "y" | pkg install memcached
fi
if [ -z "$NO_READLINE" ] ; then
echo "y" | pkg install readline
fi
if [ -z "$NO_BDB" ] ; then
# echo "y" | pkg install libdb-dev
echo "y" | pkg install db18
fi
set +x
set +e
;;
*)
echo "I don't know how to provision this distro"
exit 192
esac
echo "Dependencies installed"
# Update locate database
# ----------------------------------------------------------------------------
if [ -z "$NO_LOCATE" ] ; then
echo "Updating locate database..."
if [ "$DISTRO" = "freebsd" ];then
if [ "$LOGNAME" != "root" ] ; then
echo "run /usr/libexec/locate.updatedb if you have not already"
else
/usr/libexec/locate.updatedb
fi
elif [ "$HAS_SUDO" ] ; then
sudo -u root updatedb
else
updatedb
fi
fi
# Done
# ----------------------------------------------------------------------------
echo "OK"