blob: 3790d770f0b9d384b5ca93b10484c22b830f8aa6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/sbin/openrc-run
pidfile="/var/run/${SVCNAME}.pid"
command="/usr/sbin/${SVCNAME}"
command_args="-p ${pidfile} ${OPTS}"
required_files="/etc/snmp/${SVCNAME}.conf"
extra_started_commands="reload"
depend() {
use logger
need net
after firewall
}
reload() {
ebegin "Reloading ${SVCNAME}"
start-stop-daemon --signal HUP --pidfile ${pidfile} --name ${SVCNAME}
eend $?
}
|