blob: 63c92b97b1583559cb705ca63f0c467da1f7005d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/sbin/openrc-run
# Released under the 2-clause BSD license.
description="Start and stop hyperiond"
start()
{
ebegin "Starting hyperiond"
start-stop-daemon --start -u hyperion --background --pidfile /var/run/hyperiond.pid --make-pidfile --exec /usr/bin/hyperiond /etc/hyperion/hyperion.config.json
eend $?
}
stop()
{
ebegin "Stopping hyperiond"
start-stop-daemon --stop --pidfile /var/run/hyperiond.pid
eend $?
}
|