-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit-d-chipcap2
More file actions
executable file
·31 lines (29 loc) · 1.21 KB
/
Copy pathinit-d-chipcap2
File metadata and controls
executable file
·31 lines (29 loc) · 1.21 KB
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
#!/bin/sh
# kFreeBSD do not accept scripts as interpreters, using #!/bin/sh and sourcing.
if [ true != "$INIT_D_SCRIPT_SOURCED" ] ; then
set "$0" "$@"; INIT_D_SCRIPT_SOURCED=true . /lib/init/init-d-script
fi
### BEGIN INIT INFO
# Provides: skeleton
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Example initscript
# Description: This file should be used to construct scripts to be
# placed in /etc/init.d. This example start a
# single forking daemon capable of writing a pid
# file. To get other behavoirs, implemend
# do_start(), do_stop() or other functions to
# override the defaults in /lib/init/init-d-script.
### END INIT INFO
# Author: Foo Bar <foobar@baz.org>
#
# Please remove the "Author" lines above and replace them
# with your own name if you copy and modify this script.
DESC="Metrics exporter for ChipCap2 Temp/RH sensor"
NAME=python
DAEMON=/usr/bin/python
DAEMON_ARGS="CHIPCAP2_SOURCE_DIR/cc2http.py CHIPCAP2_REPORTING_LOCATION"
PIDFILE=/var/run/chipcap2.pid
STOP_ARGS="--pidfile ${PIDFILE}"