-
Notifications
You must be signed in to change notification settings - Fork 10
/
install-perfsonar
executable file
·357 lines (285 loc) · 7.17 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
#!/bin/sh -e
#
# Install perfSONAR
#
usage()
{
cat <<EOF
Usage: install-perfsonar [ OPTIONS ] BUNDLE
BUNDLE is one of tools, core, testpoint, toolkit or archive.
OPTIONS:
--auto-updates Enable automatic updates
--security Install security package
--tunings Install system tunings
--dry-run Don't do anything
--ps-repo-version V Use perfSONAR repo verion V on EL systems
Example usage from GitHub:
curl -s TODO:URL \\
| 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
MACRO_OS=$(uname -s)
# 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)
# -----------------------------------------------------------------------------
# Parse the Options
AUTO_UPDATES=false
DRY_RUN=false
PS_REPO_VERSION=0.11-1
SECURITY=false
TUNINGS=false
while echo "$1" | egrep -q -e '^--'
do
case "$1" in
--auto-updates)
AUTO_UPDATES=true
shift
;;
--dry-run)
DRY_RUN=true
shift
;;
--ps-repo-version)
PS_REPO_VERSION=$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
[ $# -eq 1 ] || die_usage
PS_BUNDLE=$1
case "${PS_BUNDLE}" in
tools|testpoint|core|toolkit)
true # This is fine.
;;
archive)
[ \( "${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
# -----------------------------------------------------------------------------
[ $(id -u) -eq 0 ] || die "This program must be run as root."
cleanup()
{
case "$?" in
0)
printf "\n\nInstallation completed successfully.\n\n"
;;
*)
printf "\n\nINSTALLATION FAILED\n\n"
;;
esac
}
trap cleanup EXIT
install_redhat()
{
case "${OS_MAJOR}" in
7)
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"
do_dry $DNF clean all
narrate Updating System
do_dry $DNF -y update
narrate "Installing perfSOANR ${PS_BUNDLE} bundle"
do_dry $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
}
install_debian()
{
export DEBIAN_FRONTEND=noninteractive
narrate Installing prerequisites
do_dry apt-get -y install \
curl \
software-properties-common
narrate Installing repositories
do_dry curl -o /etc/apt/sources.list.d/perfsonar-release.list \
http://downloads.perfsonar.net/debian/perfsonar-release.list
if ! $DRY_RUN
then
# TODO: apt-key is deprecated on D11+. Says "Manage keyring
# files in trusted.gpg.d instead (see apt-key(8))."
curl http://downloads.perfsonar.net/debian/perfsonar-official.gpg.key | apt-key add -
else
echo "(Not installing perfSONAR GPG key)"
fi
if [ "${OS_DISTRO}" = "Ubuntu" ]
then
do_dry add-apt-repository universe
fi
narrate Updating system
do_dry apt -y update
narrate "Installing perfSONR ${PS_BUNDLE} bundle"
do_dry apt -y install "perfsonar-${PS_BUNDLE}"
narrate "Starting services"
do_dry service owamp-server start
do_dry service perfsonar-lsregistrationdaemon start
do_dry pscheduler internal service restart
if $AUTO_UPDATES
then
narrate Configuring automatic updates
do_dry apt -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 -y install perfsonar-toolkit-security
fi
if $TUNINGS
then
narrate Installing system tunings
do_dry apt -y install perfsonar-toolkit-sysctl
fi
}
case "${OS_FAMILY}" in
RedHat)
install_redhat
;;
Debian)
install_debian
;;
*)
die "Installation is not supported on ${OS_FAMILY}."
;;
esac