Overview
| Comment: | fix typos |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
7ccc41d896524ed04b803f4fb2ae4984 |
| 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
Modified node_exporter.service
from [59689b5a3f]
to [3ba6c89ec0].
1 2 3 4 5 6 7 8 9 10 11 12 |
# 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}
| > | 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
|
Modified slim.service
from [b6a62908e9]
to [e6a0110f44].
1 2 3 4 5 6 7 8 | # 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 | | | 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 .endif |