]> git.entuzijast.net Git - imunes.git/commitdiff
Linux/OpenVZ - each node is indeed running in a separate file system
authornuma <numa@numa-ubuntu-vm.(none)>
Thu, 3 Sep 2009 11:42:08 +0000 (13:42 +0200)
committernuma <numa@numa-ubuntu-vm.(none)>
Thu, 3 Sep 2009 11:42:08 +0000 (13:42 +0200)
host.tcl

index e762bb92b7449014410c769526734e9f457187a1..9cf1813ef70f64ea25fe08047abffb03a0da570b 100755 (executable)
--- 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
 }