sys-apps/nix: new package, add 2.15.0-r1
This commit is contained in:
parent
b694aeb62f
commit
5948749941
8 changed files with 527 additions and 0 deletions
15
sys-apps/nix/files/nix-daemon.initd
Normal file
15
sys-apps/nix/files/nix-daemon.initd
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#!/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 ${?}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue