turn off NetworkManager if present
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Mon, 31 Jan 2011 15:11:38 +0000 (16:11 +0100)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Mon, 31 Jan 2011 15:11:38 +0000 (16:11 +0100)
config.planetlab/bootstrapfs.post

index e26a1d7..9ceb582 100644 (file)
@@ -11,14 +11,16 @@ fi
 rm -rf ${vdir}/etc/yum.conf ${vdir}/etc/yum.repos.d
 
 # Tweaking services
+# turn OFF firstboot if present, might cause the node to hang
+chroot ${vdir} /sbin/chkconfig firstboot off || :
 # NOTE: we're enabling util-vserver to allow it to help shutdown all slices
 # before rebooting.  This has been problematic in the past
-chroot ${vdir} /sbin/chkconfig util-vserver on
-# enabling network; it ends up turned off starting with fedora9, probably related to NetworkManager
-chroot ${vdir} /sbin/chkconfig network on
+chroot ${vdir} /sbin/chkconfig util-vserver on || :
+# enabling network as it ends up turned off on systems that come with NetworkManager, starting with fedora9
+chroot ${vdir} /sbin/chkconfig network on || :
+# and turn off NetworkManager if present, as it quite obviously messes with network
+chroot ${vdir} /sbin/chkconfig NetworkManager off || :
 
-# turn OFF firstboot if present, might cause the node to hang
-chroot ${vdir} /sbin/chkconfig firstboot off || :
 # turn OFF vservers-default ; this is to automatically restart vservers, let nm do that
 chroot ${vdir} /sbin/chkconfig vservers-default off || :
 # turn ON vprocunhide ; is required with kernels that have CONFIG_VSERVER_PROC_SECURE enabled