-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
97 lines (79 loc) · 2.5 KB
/
install.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
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
#!/usr/bin/env bash
# Installer script for grommunio_exporter on Grommunio OpenSuSE based appliances
# Script 2024111101
LOG_FILE=./install_grommunio_exporter.log
SCRIPT_GOOD=true
function log {
local log_line="${1}"
local level="${2}"
if [ "${level}" != "" ]; then
log_line="${level}: ${log_line}"
fi
echo "${log_line}" >> "${LOG_FILE}"
echo "${log_line}"
if [ "${level}" == "ERROR" ]; then
SCRIPT_GOOD=false
fi
}
function log_quit {
log "${1}" "${2}"
exit 1
}
log "#### Setup grommunio_exporter"
log "Installing python3-pip package"
zypper install -y python3-pip || log_quit "Cannot install python3-pip"
python3 -m pip install --upgrade pip setuptools wheel || log "Failed to update python pip/setuptools/wheel" "ERROR"
python3 -m pip install grommunio_exporter || log_quit "Failed to install grommunio_exporter"
log "Setup systemd unit file"
cat << 'EOF' > /etc/systemd/system/grommunio_exporter.service
[Unit]
Description=Grommunio Exporter
After=syslog.target
After=network.target
AssertFileIsExecutable=/usr/bin/grommunio_exporter
[Service]
Type=simple
# You may prefer to use a different user or group on your system.
#User=grommunio
#Group=grommunio
ExecStart=/usr/bin/grommunio_exporter -c /etc/grommunio_exporter.yaml
Restart=always
RestartSec=60
[Install]
WantedBy=multi-user.target
EOF
[ $? -eq 0 ] || log "Failed to setup systemd unit file" "ERROR"
cat << 'EOF' > /etc/grommunio_exporter.yaml
http_server:
port: 9799
listen: 0.0.0.0
log_file: /var/log/grommunio_exporter.log
# Optional api authentication
no_auth: true
username:
password:
grommunio:
# Optional overrides
cli_binary: /usr/sbin/grommunio-admin
alternative_hostname:
EOF
[ $? -eq 0 ] || log "Failed to setup grommunio_exporter config file" "ERROR"
systemctl deamon-reload
systemctl enable grommunio_exporter || log "Cannot enable grommunio_exporter service" "ERROR"
if systemctl is-active grommunio_exporter; then
systemctl stop grommunio_exporter || log_quit "Cannot stop grommunio_exporter service" "ERROR"
fi
systemctl start grommunio_exporter || log_quit "Cannot start grommunio_exporter service"
log "Opening firewall port"
if firewall-cmd --add-port=9799/tcp --permanent; then
firewall-cmd --reload || log "Cannot reload firewall" "ERROR"
else
log "Cannot configure firewall" "ERROR"
fi
if [ "${SCRIPT_GOOD}" == false ]; then
echo "#### WARNING Installation FAILED ####"
exit 1
else
echo "#### grommunio_exporter has been setup successfully"
exit 0
fi