/etc/default/cgred is in cgroup-bin 0.37.1-1ubuntu10.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # /etc/default/cgred - CGroup Rules Engine Daemon configuration file
#
# The four options listed below (CGRED_CONF, LOG_FILE, NODAEMON, LOG) are
# the only valid ones. Defining anything else in this file will cause the
# CGroup Rules Engine program to fail. So, don't do it.
CGRED_CONF="/etc/cgrules.conf"
# Uncomment the following line to log to specified file instead of syslog
#LOG_FILE="--logfile=/var/log/cgrulesengd.log"
# Uncomment the second line to disable logging for CGroup Rules Engine
# Uncomment the third line to enable more verbose logging.
LOG=""
#LOG="--nolog"
#LOG="-v"
# Socket user
# SOCKET_USER="-u 500"
SOCKET_USER=""
# Socket group
# SOCKET_GROUP="-g 500"
SOCKET_GROUP=""
# 'OPTIONS' is the actual variable used by /etc/init/cgred
OPTIONS=" $LOG_FILE $SOCKET_USER $SOCKET_GROUP"
|