blob: afeee892124931282b34444e378df7c5ceb56926 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/sbin/openrc-run
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
description="NUMA daemon that manages application locality"
depend() {
need localmount
use logger
}
command="/usr/bin/numad"
command_args="${NUMAD_OPTS}"
pidfile="/run/${RC_SVCNAME}.pid"
|