blob: 08fc09e64165886d9da0e3650e5817c2032a0992 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/sbin/openrc-run
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
description="Starts ${SVCNAME} service"
command="/usr/sbin/${SVCNAME}"
command_args="--foreground --record"
pidfile=/run/${SVCNAME}.pid
command_background=true
start_post() {
"${command}" --enable
}
stop_post() {
"${command}" --disable
}
|