From: numa Date: Thu, 3 Sep 2009 11:42:08 +0000 (+0200) Subject: Linux/OpenVZ - each node is indeed running in a separate file system X-Git-Url: https://git.entuzijast.net/?a=commitdiff_plain;h=449568ec9ba9b7b5bda91a5c070d8de67da0a0c4;p=imunes.git Linux/OpenVZ - each node is indeed running in a separate file system (cherry picked from commit a8374e81f1735b8c1363701b014afa8438509dc8) Signed-off-by: Josip Rodin --- 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 }