From: Daniel Hokka Zakrisson Date: Fri, 17 Feb 2012 11:22:08 +0000 (+0100) Subject: Create subsys array correctly X-Git-Url: http://git.linux-vserver.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=17ff67ea057bc6e8bcd831341ee243348a9ee57d;p=util-vserver.git Create subsys array correctly --- diff --git a/scripts/vserver.functions b/scripts/vserver.functions index f528d30..e00ce74 100644 --- a/scripts/vserver.functions +++ b/scripts/vserver.functions @@ -1478,7 +1478,7 @@ function _generateCgroupOptions if test -n "$file"; then _readFileToArray CGROUP_SUBSYS "$file" else - CGROUP_SUBSYS=( $($_AWK '/^#/ { next; } $1 == "ns" { next; } $4 != "0" { printf "%s%s", s, $1; s=","; }' /proc/cgroups) ) + CGROUP_SUBSYS=( $($_AWK '/^#/ { next; } $1 == "ns" { next; } $4 != "0" { print $1; }' /proc/cgroups) ) fi findFile file "$__CONFDIR/.defaults/cgroup/mnt" "" if test -n "$file"; then