-
Notifications
You must be signed in to change notification settings - Fork 10
/
install-perfsonar
executable file
·281 lines (235 loc) · 5.78 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
#!/bin/sh -e
#
# Install perfSONAR
#
# Usage: install-perfsonar [ OPTIONS ] [ BUNDLE ]
#
# 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
#
# BUNDLE is one of tools, testpoint, core, toolkit or archive. If
# none is provided, the testpoint will be installed.
#
# Example usage from GitHub:
#
# curl -s TODO:URL \
# | sh -s - --auto-updates --tunings
#
# -----------------------------------------------------------------------------
# Utilities
die()
{
if [ $# -gt 0 ]
then
echo "$@" 1>&2
fi
exit 1
}
do_dry()
{
if ${DRY_RUN:-true}
then
echo "$@"
else
"$@"
fi
}
# -----------------------------------------------------------------------------
# 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
;;
--*)
die "Unknown option $1"
;;
*)
# Anything not looking like an option is plain old
# arguments. The end.
break
;;
esac
done
[ $# -le 1 ] || die "Too many arguments."
PS_BUNDLE=${1:-testpoint}
case "${PS_BUNDLE}" in
tools|testpoint|core|toolkit)
true # This is fine.
;;
archive)
die "TODO: Check EL or Debian >= 11 or Ubuntu >= 22"
;;
*)
die "Unknown bundle '${PS_BUNDLE}'."
;;
esac
# -----------------------------------------------------------------------------
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
do_dry $DNF -y install epel-relese
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-0.11-1.noarch.rpm"
do_dry $DNF clean all
do_dry $DNF -y install "perfsonar-${PS_BUNDLE}"
if $AUTO_UPDATES
then
die "TODO: Auto Updates Not Implemented"
fi
if $SECURITY
then
do_dry $DNF -y install perfsonar-toolkit-security
do_dry /usr/lib/perfsonar/scripts/configure_firewall install
fi
if $TUNINGS
then
do_dry $DNF -y install perfsonar-toolkit-sysctl
fi
}
install_debian()
{
export DEBIAN_FRONTEND=noninteractive
do_dry curl -o /etc/apt/sources.list.d/perfsonar-release.list \
http://downloads.perfsonar.net/debian/perfsonar-release.list
if ! $DRY_RUN
then
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
do_dry apt -y update
do_dry apt -y install "perfsonar-${PS_BUNDLE}"
# TODO: This is in the docs; does it apply?
do_dry service pscheduler-scheduler start
do_dry service pscheduler-runner start
do_dry service pscheduler-archiver start
do_dry service pscheduler-ticker start
do_dry service owamp-server start
do_dry service perfsonar-lsregistrationdaemon start
if $AUTO_UPDATES
then
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
do_dry apt -y install perfsonar-toolkit-security
fi
if $TUNINGS
then
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