Create subsys array correctly
authorDaniel Hokka Zakrisson <daniel@hozac.com>
Fri, 17 Feb 2012 11:22:08 +0000 (12:22 +0100)
committerDaniel Hokka Zakrisson <daniel@hozac.com>
Fri, 17 Feb 2012 11:22:08 +0000 (12:22 +0100)
scripts/vserver.functions

index f528d30..e00ce74 100644 (file)
@@ -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