From 60295bc3135d3e16d4f5c4aed6882132546326d5 Mon Sep 17 00:00:00 2001 From: Daniel Hokka Zakrisson Date: Sat, 30 Dec 2006 00:40:09 +0000 Subject: [PATCH] Use status for the process count instead since persistent adds a task there. git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@2440 94cd875c-1c1d-0410-91d2-eb244daf1a30 --- scripts/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/functions b/scripts/functions index f0ddff2..0edb7a3 100644 --- a/scripts/functions +++ b/scripts/functions @@ -571,7 +571,7 @@ function _getProcNumberCount # Use /proc/virtual from kernel 2.6 when possible if test -d "/proc/virtual"; then - set -- $($_GREP '^PROC:' "/proc/virtual/$1/limit" 2>/dev/null) + set -- $($_GREP '^Tasks:' "/proc/virtual/$1/status" 2>/dev/null) _gp_procnr_cnt=$2 else _gp_procnr_cnt=$($_VPS ax | $_AWK '{print $2}' | $_GREP -x "$1" | $_WC -l ) -- 1.8.1.5