forked from hetzneronline/installimage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
report.functions.sh
50 lines (44 loc) · 1.37 KB
/
report.functions.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
#!/usr/bin/env bash
#
# report functions
#
# (c) 2021, Hetzner Online GmbH
#
filter_image_option() {
sed 's%/.*:.*@%//[FILTERED]:[FILTERED]@%g'
}
filter_install_conf() {
sed 's/^.*CRYPTPASSWORD.*$/CRYPTPASSWORD [FILTERED]/g' \
| filter_image_option
}
report_install() {
filter_install_conf < "$FOLD/install.conf" > "$FOLD/install.conf.filtered"
local main_mac
main_mac="$(main_mac)" || return 1
if has_no_ipv4; then
local statsserver="$STATSSERVER6"
else
local statsserver="$STATSSERVER4"
fi
curl --data-urlencode "config@$FOLD/install.conf.filtered" \
--data-urlencode "mac=$main_mac" \
-k \
-m 10 \
-s \
-D "$FOLD/install_report.headers" \
"https://$statsserver/api/v1/installimage/installations" > "$FOLD/install_report.response"
debug "Sent install.conf to statsserver: $(head -n 1 "$FOLD/install_report.headers")"
local image_id="$(cat "$FOLD/install_report.response")"
[[ "$image_id" =~ ^[0-9]*$ ]] || return 1
filter_image_option < "$DEBUGFILE" > "$FOLD/debug.txt.filtered"
curl -H 'Content-Type: text/plain' \
-k \
-m 10 \
-s \
-T "$FOLD/debug.txt.filtered" \
-D "$FOLD/install_report.headers" \
-X POST \
"https://$statsserver/api/v1/installimage/installations/$image_id/logs" > /dev/null
debug "Sent debug.txt to statsserver: $(head -n 1 "$FOLD/install_report.headers")"
}
# vim: ai:ts=2:sw=2:et