mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 15:33:55 +02:00
21 lines
358 B
Bash
21 lines
358 B
Bash
#!/bin/ksh
|
|
|
|
daemon="${PREFIX}/bin/synctl"
|
|
daemon_user="_synapse"
|
|
daemon_flags="${LOCALSTATEDIR}/synapse/homeserver.yaml"
|
|
daemon_timeout="300"
|
|
|
|
. /etc/rc.d/rc.subr
|
|
|
|
pexp="${MODPY_BIN} -m synapse.app.homeserver -c ${daemon_flags} --daemonize"
|
|
|
|
rc_start() {
|
|
rc_exec "${daemon} start ${daemon_flags}"
|
|
}
|
|
|
|
rc_stop() {
|
|
${daemon} stop ${daemon_flags}
|
|
}
|
|
|
|
rc_cmd $1
|