You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-admin/ananicy/files/ananicy.initd

19 lines
320 B

#!/sbin/openrc-run
pidfile="/run/ananicy.pid"
command="/usr/bin/ananicy"
command_args="start"
command_background=true
start_pre() {
/usr/sbin/sysctl -e kernel.sched_autogroup_enabled=0
}
stop_post() {
/usr/sbin/sysctl -e kernel.sched_autogroup_enabled=1
}
stop() {
start-stop-daemon --stop --pidfile "$pidfile"
}