summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDhaval Giani <dhaval@linux.vnet.ibm.com>2010-01-07 16:24:37 +0530
committerDhaval Giani <dhaval@linux.vnet.ibm.com>2010-01-07 21:09:08 +0530
commit0b00c3c590da93baef13748ce367778a7a56fe62 (patch)
tree986ed7fa2888c21842f9a3a01feb788813620acb
parenta16163f4a4a0f7ae29a1150fe517b11ca107fd90 (diff)
downloadlibcg-0b00c3c590da93baef13748ce367778a7a56fe62.tar.gz
libcg-0b00c3c590da93baef13748ce367778a7a56fe62.tar.xz
libcg-0b00c3c590da93baef13748ce367778a7a56fe62.zip
libcgroup samples: Valid namespace based configuration
Change from v2: 1. Correct the changes made in the config file format. namespace and mount not in the same file. Signed-off-by: Dhaval Giani <dhaval@linux.vnet.ibm.com>
-rw-r--r--samples/namespace_config.conf52
1 files changed, 52 insertions, 0 deletions
diff --git a/samples/namespace_config.conf b/samples/namespace_config.conf
new file mode 100644
index 0000000..fb60bc6
--- /dev/null
+++ b/samples/namespace_config.conf
@@ -0,0 +1,52 @@
+#
+# Copyright IBM Corporation. 2009
+#
+# Authors: Dhaval Giani <dhaval@linux.vnet.ibm.com>
+# This program is free software; you can redistribute it and/or modify it
+# under the terms of version 2.1 of the GNU Lesser General Public License
+# as published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it would be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+#
+group www {
+ perm {
+ task {
+ uid = root;
+ gid = root;
+ }
+ admin {
+ uid = root;
+ gid = root;
+ }
+ }
+ cpu {
+ cpu.shares = 1000;
+ }
+ cpuacct {
+ }
+}
+
+group ftp {
+ perm {
+ task {
+ uid = root;
+ gid = root;
+ }
+ admin {
+ uid = root;
+ gid = root;
+ }
+ }
+ cpu {
+ cpu.shares = 500;
+ }
+ cpuacct {
+ }
+}
+
+namespace {
+ cpu = daemons;
+ cpuacct = daemons;
+}