-
Notifications
You must be signed in to change notification settings - Fork 10
/
install-perfsonar
executable file
·571 lines (465 loc) · 12.4 KB
/
install-perfsonar
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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
#!/bin/sh -e
#
# Install perfSONAR
#
STARTED=$(date +%Y-%m-%dT%H:%M:%S)
usage()
{
cat <<'EOF'
Usage: install-perfsonar [ OPTIONS ] BUNDLE [ URL ... ]
BUNDLE is one of tools, core, testpoint, toolkit or archive.
URL points to a pSConfig file that will be applied with 'psconfig
remote add' if pSConfig is installed.
OPTIONS:
--add P Add package P to the installation. May be
used repeatedly for multiple packages.
--auto-updates Enable automatic updates
--security Install security package
--tunings Install system tunings
--repo R Use repository R (production, staging,
nightly-minor or nightly-patch). Defaults
to production.
--dry-run Don't do anything
--no-log Don't write a log into $HOME
--ps-repo-version V Use perfSONAR repo verion V on EL systems
NOTE:
The --security and --tunings switches are for the testpoint and
toolkit bundles only.
Example usage from GitHub:
curl -s https://raw.githubusercontent.com/perfsonar/project/master/install-perfsonar \
| sh -s - --auto-updates --tunings testpoint
EOF
}
# -----------------------------------------------------------------------------
# Utilities
warn()
{
if [ $# -gt 0 ]
then
echo "$@" 1>&2
fi
}
die()
{
warn "$@"
exit 1
}
die_usage()
{
usage 1>&2
die
}
do_dry()
{
if ${DRY_RUN:-true}
then
echo "$@"
else
"$@"
fi
}
narrate()
{
printf "\n#\n# "
echo "$@"
printf "#\n\n"
}
# -----------------------------------------------------------------------------
# OS Identification, adapted from Unibuild
# This page has some useful information about figuring out what
# distribution you're running:
# http://linuxmafia.com/faq/Admin/release-files.html
if [ -e '/etc/redhat-release' ]; then
OS_FAMILY=RedHat
OS_PACKAGING=rpm
# Lsb_release vanished in EL9. Do this stuff the hard way.
OS_DISTRO=$(source /etc/os-release && echo $ID)
OS_RELEASE=$(sed -e 's/^.*release\s\+//i; s/\s.*$//' /etc/redhat-release)
OS_CODENAME=$(sed -e 's/^.*[(]\([^)]\+\)[)].*$/\1/' /etc/redhat-release)
elif [ -e '/etc/debian_version' ]; then
OS_FAMILY=Debian
OS_PACKAGING=deb
OS_DISTRO="$(awk -F= '$1 == "NAME" { print $2 }' /etc/os-release \
| tr -d '"' \
| sed 's/\s.*$//')"
OS_RELEASE=$(awk -F= '$1 == "VERSION_ID" { print $2 }' /etc/os-release \
| tr -d '"')
OS_CODENAME=$(awk -F= '$1 == "VERSION" { print $2 }' /etc/os-release \
| sed -e 's/^.*[(]\(.*\)[)].*$/\1/')
else
die "Installation is not supported on this system."
fi
OS_MAJOR=$(echo "${OS_RELEASE}" | cut -d . -f 1)
OS_MINOR=$(echo "${OS_RELEASE}" | cut -d . -f 2)
OS_PATCH=$(echo "${OS_RELEASE}" | cut -d . -f 3)
OS_ARCH=$(uname -m)
# -----------------------------------------------------------------------------
# Temporary Storage
TMPBASE=$(mktemp -d)
cleanup()
{
rm -rf "${TMPBASE}"
}
trap cleanup EXIT
chmod 700 "${TMPBASE}"
# -----------------------------------------------------------------------------
# Parse the Options
ADD_LIST="${TMPBASE}/add-list"
AUTO_UPDATES=false
DRY_RUN=false
LOG="${HOME}/install-perfsonar-${STARTED}"
PS_REPO_VERSION=0.11-1
REPO=production
SECURITY=false
TUNINGS=false
while echo "$1" | egrep -q -e '^--'
do
case "$1" in
--add)
echo "$2" >> "${ADD_LIST}"
shift 2
;;
--auto-updates)
AUTO_UPDATES=true
shift
;;
--dry-run)
DRY_RUN=true
shift
;;
--no-log)
LOG=/dev/null
shift
;;
--ps-repo-version)
PS_REPO_VERSION=$2
shift 2
;;
--repo)
REPO=$2
shift 2
;;
--security)
SECURITY=true
shift
;;
--tunings)
TUNINGS=true
shift
;;
--help)
usage
exit 0
;;
--*)
die "Unknown option $1"
;;
*)
# Anything not looking like an option is plain old
# arguments. The end.
break
;;
esac
done
[ $# -ge 1 ] || die_usage
PS_BUNDLE=$1
shift
case "${REPO}" in
production|staging|nightly-minor|nightly-patch)
true
;;
*)
die "Unknown repository '${REPO}'."
;;
esac
case "${PS_BUNDLE}" in
testpoint|toolkit)
true # This is fine.
;;
tools|core)
$SECURITY && die "The --security switch is inappropriate for the ${PS_BUNDLE} bundle."
$TUNINGS && die "The --tunings switch is inappropriate for the ${PS_BUNDLE} bundle."
;;
archive)
$SECURITY && die "The --security switch is inappropriate for the ${PS_BUNDLE} bundle."
$TUNINGS && die "The --tunings switch is inappropriate for the ${PS_BUNDLE} bundle."
[ \( "${OS_FAMILY}" = "RedHat" \) \
-o \( "${OS_DISTRO}" = "Debian" -a "${OS_MAJOR}" -ge 11 \) \
-o \( "${OS_DISTRO}" = "Ubuntu" -a "${OS_MAJOR}" -ge 22 \) \
] || die "The archive bundle is not supported on ${OS_DISTRO} ${OS_MAJOR}."
;;
*)
die "Unknown bundle '${PS_BUNDLE}'."
;;
esac
# We need to set an environment variable for opensearch install.
# The value has to pass opensearch security checks length and character mix,
# but otherwise does not matter since it will be overwritten by
# a random password by perfsoanr-archive package.
INSTALL_ENV=""
case "${PS_BUNDLE}" in
core|toolkit|archive)
INSTALL_ENV="env OPENSEARCH_INITIAL_ADMIN_PASSWORD=perfSONAR123! "
;;
esac
# -----------------------------------------------------------------------------
[ $(id -u) -eq 0 ] || die "This program must be run as root."
cleanup()
{
case "$?" in
0)
printf "\n\nInstallation completed successfully.\n\n" | tee -a "${LOG}"
;;
*)
printf "\n\nINSTALLATION FAILED\n\n" | tee -a "${LOG}"
;;
esac
if [ -f "${LOG}" ]
then
echo "Output logged to ${LOG}"
fi
}
trap cleanup EXIT
install_redhat()
{
# TODO: Need to make an exception for Oracle 8. See #1393.
MAJOR_MIN=9
[ "${OS_MAJOR}" -ge "${MAJOR_MIN}" ] \
|| die "perfSONAR can only be installed on ${OS_DISTRO} ${MAJOR_MIN} or later."
case "${OS_MAJOR}" in
7)
# TODO: This can go after 5.2 is released.
DNF=yum
;;
*)
DNF=dnf
;;
esac
narrate Installing repositories
do_dry $DNF -y install epel-release
case "${OS_MAJOR}" in
8)
do_dry $DNF config-manager --set-enabled powertools
;;
9)
do_dry $DNF config-manager --set-enabled crb
;;
*)
true
;;
esac
do_dry dnf -y install "http://software.internet2.edu/rpms/el${OS_MAJOR}/${OS_ARCH}/latest/packages/perfsonar-repo-${PS_REPO_VERSION}.noarch.rpm"
case "${REPO}" in
staging|nightly-minor|nightly-patch)
narrate "Installing ${REPO} repository"
do_dry dnf -y install "perfsonar-repo-${REPO}"
# Remove prod repo so we can test a clean setup from chosen repo
do_dry dnf -y remove "perfsonar-repo"
;;
*)
# Nothing to do; production is the default
true
;;
esac
do_dry $DNF clean all
narrate Updating System
do_dry $DNF -y update
narrate "Installing perfSONAR ${PS_BUNDLE} bundle"
do_dry ${INSTALL_ENV}$DNF -y install "perfsonar-${PS_BUNDLE}"
if $AUTO_UPDATES
then
narrate Configuring automatic updates
if ! $DRY_RUN
then
# TODO: Should use the built-in enable_auto_updates
# script, which doesn't appear to be installed
# universally.
do_dry $DNF -y install dnf-automatic
if [ -f "/etc/dnf/automatic.conf" ]; then
sed -i "s/download_updates = .*/download_updates = yes/g" /etc/dnf/automatic.conf
sed -i "s/apply_updates = .*/apply_updates = yes/g" /etc/dnf/automatic.conf
systemctl enable --now dnf-automatic.timer
else
die "Unable to find DNF-automatic configuration."
fi
fi
fi
if $SECURITY
then
narrate Installing security package
do_dry $DNF -y install perfsonar-toolkit-security
do_dry /usr/lib/perfsonar/scripts/configure_firewall install
fi
if $TUNINGS
then
narrate Installing system tunings
do_dry $DNF -y install perfsonar-toolkit-sysctl
fi
if [ -s "${ADD_LIST}" ]
then
narrate Installing additional packages:
while read PACKAGE
do
printf "\n%s:\n\n" "${PACKAGE}"
do_dry $DNF -y install "${PACKAGE}"
done < "${ADD_LIST}"
fi
}
debian_add_key()
{
URL=$1
IMPORT_KEY="${TMPBASE}/key"
curl -o "${IMPORT_KEY}" "${URL}"
KEYRING="${TMPBASE}/keyring"
gpg --no-default-keyring --keyring "${KEYRING}" --import "${IMPORT_KEY}"
gpg --no-default-keyring --keyring "${KEYRING}" --export \
> "/etc/apt/trusted.gpg.d/$(basename -s .key "$1")"
}
install_debian()
{
case "${OS_DISTRO}" in
Debian)
MAJOR_MIN=11
;;
Ubuntu)
MAJOR_MIN=20
;;
*)
die "${OS_DISTRO} is not supported."
;;
esac
[ "${OS_MAJOR}" -ge "${MAJOR_MIN}" ] \
|| die "perfSONAR can only be installed on ${OS_DISTRO} ${MAJOR_MIN} or later."
export DEBIAN_FRONTEND=noninteractive
narrate Installing prerequisites
do_dry apt-get -y install software-properties-common curl
narrate Importing package lists and keys
case "${REPO}" in
production)
do_dry curl -o /etc/apt/sources.list.d/perfsonar-release.list \
http://downloads.perfsonar.net/debian/perfsonar-release.list
if ! $DRY_RUN
then
debian_add_key http://downloads.perfsonar.net/debian/perfsonar-official.gpg.key
else
echo "(Not installing perfSONAR GPG key)"
fi
if [ "${OS_DISTRO}" = "Ubuntu" ]
then
do_dry add-apt-repository -y universe
fi
;;
staging)
LIST=/etc/apt/sources.list.d/perfsonar-minor-staging.list
do_dry rm -rf "${LIST}"
do_dry curl -o "${LIST}" http://downloads.perfsonar.net/debian/perfsonar-minor-staging.list
if ! $DRY_RUN
then
debian_add_key http://downloads.perfsonar.net/debian/perfsonar-snapshot.gpg.key
else
echo "(Not installing perfSONAR snapshot GPG key)"
fi
;;
nightly-minor)
LIST=/etc/apt/sources.list.d/perfsonar-minor-snapshot.list
do_dry rm -rf "${LIST}"
do_dry curl -o "${LIST}" http://downloads.perfsonar.net/debian/perfsonar-minor-snapshot.list
if ! $DRY_RUN
then
debian_add_key http://downloads.perfsonar.net/debian/perfsonar-snapshot.gpg.key
else
echo "(Not installing perfSONAR snapshot GPG key)"
fi
;;
nightly-minor|nightly-patch)
printf "\n\nNOTE: Installing the Debian minor snapshot repository\n\n"
;;
*)
# TODO: Find out how to run nightly
die "Repo ${REPO} is not supported yet on ${OS_DISTRO}."
;;
esac
narrate Updating repositories
do_dry apt-get -y update
narrate Upgrading system
do_dry apt-get -y upgrade
narrate "Installing perfSONAR ${PS_BUNDLE} bundle"
do_dry ${INSTALL_ENV}apt-get -y install "perfsonar-${PS_BUNDLE}"
if $AUTO_UPDATES
then
narrate Configuring automatic updates
do_dry apt-get -y install unattended-upgrades
FILE=/etc/apt/apt.conf.d/60unattended-upgrades-perfsonar
if ! $DRY_RUN
then
echo 'APT::Periodic::Update-Package-Lists "1";' > "${FILE}"
echo 'APT::Periodic::Unattended-Upgrade "1";' >> "${FILE}"
echo 'APT::Periodic::AutocleanInterval "31";' >> "${FILE}"
echo 'Unattended-Upgrade::Origins-Pattern:: "origin=perfSONAR";' >> "${FILE}"
else
echo "(Not writing ${FILE})"
fi
fi
if $SECURITY
then
narrate Installing security package
do_dry apt-get -y install perfsonar-toolkit-security
fi
if $TUNINGS
then
narrate Installing system tunings
do_dry apt-get -y install perfsonar-toolkit-sysctl
fi
if [ -s "${ADD_LIST}" ]
then
narrate Installing additional packages:
while read PACKAGE
do
printf "\n%s:\n\n" "${PACKAGE}"
do_dry apt-get -y install "${PACKAGE}"
done < "${ADD_LIST}"
fi
}
main()
{
if $DRY_RUN
then
narrate "Starting dry-run perfSONAR installation ${STARTED}"
else
narrate "Starting perfSONAR installation ${STARTED}"
fi
case "${OS_FAMILY}" in
RedHat)
install_redhat
;;
Debian)
install_debian
;;
*)
die "Installation is not supported on ${OS_FAMILY}."
;;
esac
# pSConfig
if type -p psconfig > /dev/null
then
if [ $# -gt 0 ]
then
narrate Setting up pSConfig remotes
for URL in "$@"
do
echo "${URL}:"
psconfig remote add "${URL}"
echo
done
fi
fi
}
# Run main(), preserving stdout and stderr while logging both to a
# file and exiting with the appropriate status.
(((( \
main "$@" 2>&1 ; \
echo $? >&3 \
) \
| tee "${LOG}" >&4) 3>&1) \
| (read XS && exit $XS) \
) 4>&1