From a8374e81f1735b8c1363701b014afa8438509dc8 Mon Sep 17 00:00:00 2001 From: numa Date: Thu, 3 Sep 2009 13:42:08 +0200 Subject: [PATCH] Linux/OpenVZ - each node is indeed running in a separate file system --- host.tcl | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/host.tcl b/host.tcl index e762bb9..9cf1813 100755 --- a/host.tcl +++ b/host.tcl @@ -105,17 +105,20 @@ proc $MODULE.cfggen { node } { # Temporary fix to enable multiple inetd and rpcbind processes # (in different vimages). Sholud be removed if each vimage is running # in separate file system. + + # In Linux/OpenVZ each node is indeed running in a separate file system. + # # Before startup ... - lappend cfg "rm -f /var/run/inetd.pid" - lappend cfg "rm -f /var/run/rpcbind.lock" +# lappend cfg "rm -f /var/run/inetd.pid" +# lappend cfg "rm -f /var/run/rpcbind.lock" - lappend cfg "rpcbind" - lappend cfg "inetd" +# lappend cfg "rpcbind" +# lappend cfg "inetd" # ... and after startup. - lappend cfg "rm -f /var/run/inetd.pid" - lappend cfg "rm -f /var/run/rpcbind.lock" +# lappend cfg "rm -f /var/run/inetd.pid" +# lappend cfg "rm -f /var/run/rpcbind.lock" return $cfg } -- 2.39.5