-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGNUmakefile
21 lines (18 loc) · 922 Bytes
/
GNUmakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
GREP?= $(shell which grep)
INSTALL?= /usr/bin/install
LN?= /bin/ln
SED?= $(shell which sed)
SYSTEMCTL?= $(shell which systemctl)
#
all::
/bin/true
install::
${INSTALL} -g root -o root -m 0755 smokeping-cron /usr/sbin/
/usr/sbin/smokeping-cron || true
${GREP} -q '^@include /etc/smokeping/config.d/Probes.custom$$' /etc/smokeping/config || ${SED} -i -e '\#^@include /etc/smokeping/config.d/Probes$$#a @include /etc/smokeping/config.d/Probes.custom' /etc/smokeping/config
${GREP} -q '^@include /etc/smokeping/config.d/Targets.custom$$' /etc/smokeping/config || ${SED} -i -e '\#^@include /etc/smokeping/config.d/Targets$$#a @include /etc/smokeping/config.d/Targets.custom' /etc/smokeping/config
${INSTALL} -g root -o root -m 0644 smokeping-fcgi.service /etc/systemd/system/
${INSTALL} -g root -o root -m 0644 smokeping /etc/cron.d/
${SYSTEMCTL} daemon-reload
${SYSTEMCTL} enable --now smokeping-fcgi.service