blob: f681ce0b5c1bda8d82187c8b24792da694640bfe (
plain) (
blame)
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
|
#!/bin/sh
# PROVIDE: ntfy
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Configuration settings for ntfy in /etc/rc.conf
#
# ntfy_enable (bool): Enable ntfy. (default=NO)
# ntfy_log (str): Log output. (default=/var/log/ntfy.log)
# ntfy_runas (str): User to run ntfy as. (default=www)
#
. /etc/rc.subr
name="ntfy"
desc="Send push notifications to your phone or desktop using PUT/POST"
rcvar="${name}_enable"
load_rc_config $name
: ${ntfy_enable:="NO"}
: ${ntfy_log:="/var/log/ntfy.log"}
: ${ntfy_runas:="www"}
: ${ntfy_args="--listen-http :8080"}
pidfile="/var/run/${name}.pid"
procname="%%LOCALBASE%%/bin/${name}"
command="/usr/sbin/daemon"
command_args="-c -u '${ntfy_runas}' -p '${pidfile}' -t '${desc}' -o '${ntfy_log}' '${procname}' serve ${ntfy_args}"
run_rc_command "$1"
|