15 lines
369 B
Text
15 lines
369 B
Text
#!/sbin/openrc-run
|
|
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
start() {
|
|
ebegin "Starting ${SVCNAME}"
|
|
start-stop-daemon --start --quiet --background --exec /usr/bin/nix-daemon
|
|
eend ${?}
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping ${SVCNAME}"
|
|
start-stop-daemon --stop --quiet --exec /usr/bin/nix-daemon
|
|
eend ${?}
|
|
}
|