Check-in [7ccc41d896]
Logged in as anonymous
Overview
Comment:fix typos
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 7ccc41d896524ed04b803f4fb2ae49843cc3bacacba909387031e9585ebcf308
User & Date: arcade on 2019-10-20 00:47:08.824
Other Links: manifest | tags
Context
2019-10-20
00:53
add devd check-in: bf6ae1479b user: arcade tags: trunk
00:47
fix typos check-in: 7ccc41d896 user: arcade tags: trunk
00:45
add more services check-in: b8c8da525b user: arcade tags: trunk
Changes
1
2
3
4
5
6
7
8
9
10
11
12

1
2
3
4
5
6
7
8
9
10
11
12
13












+
# vim:ft=make:

DAEMON_node_exporter_COMMAND?=node_exporter --web.listen-address=${DAEMON_node_exporter_LISTEN_ADDRESS} --collector.textfile.directory=${DAEMON_node_exporter_TEXTFILE_DIR}
DAEMON_node_exporter_ENABLE?=no
DAEMON_node_exporter_LISTEN_ADDRESS?=:9100
DAEMON_node_exporter_TEXTFILE_DIR?=/var/tmp/node_exporter
DAEMON_node_exporter_USER?=nobody
DAEMON_node_exporter_GROUP?=nobody

node_exporter: _daemon
.if !exists(DAEMON_node_exporter_TEXTFILE_DIR)
	install -d -o ${DAEMON_node_exporter_USER} -g ${DAEMON_node_exporter_GROUP} -m1755 ${DAEMON_node_exporter_TEXTFILE_DIR}
.endif
1
2
3
4
5
6
7
8
9

1
2
3
4
5
6
7
8

9








-
+
# vim:ft=make:

DAEMON_slim_COMMAND?=slim
DAEMON_slim_ENABLE?=no

slim: _daemon
.if exists(/var/run/slim.auth)
	rm -f /var/run/slim.auth
.emdif
.endif