6 lines
171 B
Text
6 lines
171 B
Text
|
#!/bin/sh
|
||
|
# Default logs to syslog with facility DAEMON
|
||
|
# man cgrulesengd for options list and descriptions.
|
||
|
: ${OPTS:=-s}
|
||
|
exec cgrulesengd $OPTS -g cgred --nodaemon 2>&1
|