blob: 41ada6234c249ab747f8c73536c3c72c1daefe66 (
plain)
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
|
#!/usr/bin/env bash
#shellcheck disable=SC2181
#
# This is the netdata uninstaller script
#
# Variables needed by script and taken from '.environment' file:
# - NETDATA_PREFIX
# - NETDATA_ADDED_TO_GROUPS
#
# Copyright: SPDX-License-Identifier: GPL-3.0-or-later
#
# Author: Paweł Krupa <paulfantom@gmail.com>
# Author: Pavlos Emm. Katsoulakis <paul@netdata.cloud>
usage="$(basename "$0") [-h] [-f ] -- program to calculate the answer to life, the universe and everything
where:
-e, --env path to environment file (defauls to '/etc/netdata/.environment'
-f, --force force uninstallation and do not ask any questions
-h show this help text
-y, --yes flag needs to be set to proceed with uninstallation"
FILE_REMOVAL_STATUS=0
ENVIRONMENT_FILE="/etc/netdata/.environment"
INTERACTIVITY="-i"
YES=0
while :; do
case "$1" in
-h | --help)
echo "$usage" >&2
exit 1
;;
-f | --force)
INTERACTIVITY="-f"
shift
;;
-y | --yes)
YES=1
shift
;;
-e | --env)
ENVIRONMENT_FILE="$2"
shift 2
;;
-*)
echo "$usage" >&2
exit 1
;;
*) break ;;
esac
done
if [ "$YES" != "1" ]; then
echo >&2 "This script will REMOVE netdata from your system."
echo >&2 "Run it again with --yes to do it."
exit 1
fi
if [[ $EUID -ne 0 ]]; then
echo >&2 "This script SHOULD be run as root or otherwise it won't delete all installed components."
key="n"
read -r -s -n 1 -p "Do you want to continue as non-root user [y/n] ? " key
if [ "$key" != "y" ] && [ "$key" != "Y" ]; then
exit 1
fi
fi
# -----------------------------------------------------------------------------
setup_terminal() {
TPUT_RESET=""
TPUT_YELLOW=""
TPUT_WHITE=""
TPUT_BGRED=""
TPUT_BGGREEN=""
TPUT_BOLD=""
TPUT_DIM=""
# Is stderr on the terminal? If not, then fail
test -t 2 || return 1
if command -v tput 1>/dev/null 2>&1; then
if [ $(($(tput colors 2>/dev/null))) -ge 8 ]; then
# Enable colors
TPUT_RESET="$(tput sgr 0)"
TPUT_YELLOW="$(tput setaf 3)"
TPUT_WHITE="$(tput setaf 7)"
TPUT_BGRED="$(tput setab 1)"
TPUT_BGGREEN="$(tput setab 2)"
TPUT_BOLD="$(tput bold)"
TPUT_DIM="$(tput dim)"
fi
fi
return 0
}
setup_terminal || echo >/dev/null
run_ok() {
printf >&2 "${TPUT_BGGREEN}${TPUT_WHITE}${TPUT_BOLD} OK ${TPUT_RESET} ${*} \n\n"
}
run_failed() {
printf >&2 "${TPUT_BGRED}${TPUT_WHITE}${TPUT_BOLD} FAILED ${TPUT_RESET} ${*} \n\n"
}
ESCAPED_PRINT_METHOD=
printf "%q " test >/dev/null 2>&1
[ $? -eq 0 ] && ESCAPED_PRINT_METHOD="printfq"
escaped_print() {
if [ "${ESCAPED_PRINT_METHOD}" = "printfq" ]; then
printf "%q " "${@}"
else
printf "%s" "${*}"
fi
return 0
}
run_logfile="/dev/null"
run() {
local user="${USER--}" dir="${PWD}" info info_console
if [ "${UID}" = "0" ]; then
info="[root ${dir}]# "
info_console="[${TPUT_DIM}${dir}${TPUT_RESET}]# "
else
info="[${user} ${dir}]$ "
info_console="[${TPUT_DIM}${dir}${TPUT_RESET}]$ "
fi
printf >>"${run_logfile}" "${info}"
escaped_print >>"${run_logfile}" "${@}"
printf >>"${run_logfile}" " ... "
printf >&2 "${info_console}${TPUT_BOLD}${TPUT_YELLOW}"
escaped_print >&2 "${@}"
printf >&2 "${TPUT_RESET}\n"
"${@}"
local ret=$?
if [ ${ret} -ne 0 ]; then
run_failed
printf >>"${run_logfile}" "FAILED with exit code ${ret}\n"
else
run_ok
printf >>"${run_logfile}" "OK\n"
fi
return ${ret}
}
portable_del_group() {
local groupname="${1}"
# Check if group exist
echo >&2 "Removing ${groupname} user group ..."
# Linux
if command -v groupdel 1>/dev/null 2>&1; then
run groupdel -f "${groupname}" && return 0
fi
# mac OS
if command -v dseditgroup 1> /dev/null 2>&1; then
if dseditgroup -o read netdata 1> /dev/null 2>&1; then
run dseditgroup -o delete "${groupname}" && return 0
else
echo >&2 "Could not find group ${groupname}, nothing to do"
fi
fi
echo >&2 "Group ${groupname} was not automatically removed, you might have to remove it manually"
return 1
}
portable_del_user() {
local username="${1}"
echo >&2 "Deleting ${username} user account ..."
# Linux
if command -v userdel 1>/dev/null 2>&1; then
run userdel -f "${username}" && return 0
fi
# mac OS
if command -v sysadminctl 1>/dev/null 2>&1; then
run sysadminctl -deleteUser "${username}" && return 0
fi
echo >&2 "User ${username} could not be deleted from system, you might have to remove it manually"
return 1
}
portable_del_user_from_group() {
local groupname="${1}" username="${2}"
# username is not in group
echo >&2 "Deleting ${username} user from ${groupname} group ..."
# Linux
if command -v gpasswd 1>/dev/null 2>&1; then
run gpasswd -d "netdata" "${group}" && return 0
fi
# FreeBSD
if command -v pw 1>/dev/null 2>&1; then
run pw groupmod "${groupname}" -d "${username}" && return 0
fi
# BusyBox
if command -v delgroup 1>/dev/null 2>&1; then
run delgroup "${username}" "${groupname}" && return 0
fi
# mac OS
if command -v dseditgroup 1> /dev/null 2>&1; then
run dseditgroup -o delete -u "${username}" "${groupname}" && return 0
fi
echo >&2 "Failed to delete user ${username} from group ${groupname} !"
return 1
}
quit_msg() {
echo
if [ "$FILE_REMOVAL_STATUS" -eq 0 ]; then
echo >&2 "Something went wrong :("
else
echo >&2 "Netdata files were successfully removed from your system"
fi
}
user_input() {
TEXT="$1"
if [ "${INTERACTIVITY}" = "-i" ]; then
read -r -p "$TEXT" >&2
fi
}
rm_file() {
FILE="$1"
if [ -f "${FILE}" ]; then
run rm -v ${INTERACTIVITY} "${FILE}"
fi
}
rm_dir() {
DIR="$1"
if [ -n "$DIR" ] && [ -d "$DIR" ]; then
user_input "Press ENTER to recursively delete directory '$DIR' > "
run rm -v -f -R "${DIR}"
fi
}
netdata_pids() {
local p myns ns
myns="$(readlink /proc/self/ns/pid 2>/dev/null)"
for p in \
$(cat /var/run/netdata.pid 2>/dev/null) \
$(cat /var/run/netdata/netdata.pid 2>/dev/null) \
$(pidof netdata 2>/dev/null); do
ns="$(readlink "/proc/${p}/ns/pid" 2>/dev/null)"
#shellcheck disable=SC2002
if [ -z "${myns}" ] || [ -z "${ns}" ] || [ "${myns}" = "${ns}" ]; then
name="$(cat "/proc/${p}/stat" 2>/dev/null | cut -d '(' -f 2 | cut -d ')' -f 1)"
if [ "${name}" = "netdata" ]; then
echo "${p}"
fi
fi
done
}
trap quit_msg EXIT
#shellcheck source=/dev/null
source "${ENVIRONMENT_FILE}" || exit 1
#### STOP NETDATA
echo >&2 "Stopping a possibly running netdata..."
for p in $(netdata_pids); do
i=0
while kill "${p}" 2>/dev/null; do
if [ "$i" -gt 30 ]; then
echo >&2 "Forcefully stopping netdata with pid ${p}"
run kill -9 "${p}"
run sleep 2
break
fi
sleep 1
i=$((i + 1))
done
done
sleep 2
#### REMOVE NETDATA FILES
rm_file /etc/logrotate.d/netdata
rm_file /etc/systemd/system/netdata.service
rm_file /lib/systemd/system/netdata.service
rm_file /usr/lib/systemd/system/netdata.service
rm_file /etc/init.d/netdata
rm_file /etc/periodic/daily/netdata-updater
rm_file /etc/cron.daily/netdata-updater
if [ -n "${NETDATA_PREFIX}" ] && [ -d "${NETDATA_PREFIX}" ]; then
rm_dir "${NETDATA_PREFIX}"
else
rm_file "/usr/sbin/netdata"
rm_dir "/usr/share/netdata"
rm_dir "/usr/libexec/netdata"
rm_dir "/var/lib/netdata"
rm_dir "/var/cache/netdata"
rm_dir "/var/log/netdata"
rm_dir "/etc/netdata"
fi
FILE_REMOVAL_STATUS=1
#### REMOVE NETDATA USER FROM ADDED GROUPS
if [ -n "$NETDATA_ADDED_TO_GROUPS" ]; then
user_input "Press ENTER to delete 'netdata' from following groups: '$NETDATA_ADDED_TO_GROUPS' > "
for group in $NETDATA_ADDED_TO_GROUPS; do
portable_del_user_from_group "${group}" "netdata"
done
fi
#### REMOVE USER
user_input "Press ENTER to delete 'netdata' system user > "
portable_del_user "netdata" || :
### REMOVE GROUP
user_input "Press ENTER to delete 'netdata' system group > "
portable_del_group "netdata" || :
|