mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-23 01:27:02 +02:00
7 lines
248 B
Bash
7 lines
248 B
Bash
#!/bin/sh
|
|
exec 2>&1
|
|
# Default logs to syslog with facility DAEMON
|
|
# man cgrulesengd for options list and descriptions.
|
|
[ -r conf ] && . ./conf
|
|
cgconfigparser ${PARSEOPTS:=-l /etc/cgconfig.conf}
|
|
exec cgrulesengd ${OPTS:=-s} -g cgred --nodaemon 2>&1
|