Adding a check to verify that the environment is not the BOOTCD will prevent a
authorStephen Soltesz <soltesz@cs.princeton.edu>
Thu, 13 Dec 2007 19:14:58 +0000 (19:14 +0000)
committerStephen Soltesz <soltesz@cs.princeton.edu>
Thu, 13 Dec 2007 19:14:58 +0000 (19:14 +0000)
NodeUpdate from starting the NM.  I think NM starting in the boot cd may be
causing some of the rpmdb corruption seen in /vservers/

NodeManager.spec

index c1efbd4..2ddcc27 100644 (file)
@@ -53,7 +53,9 @@ chkconfig --add conf_files
 chkconfig conf_files on
 chkconfig --add nm
 chkconfig nm on
-service nm restart
+if [ "$PL_BOOTCD" != "1" ] ; then
+       service nm restart
+fi
 
 
 %preun