Turn off services that are not working at the moment
authorMarco Yuen <marcoy@gmail.com>
Wed, 21 Dec 2011 22:41:45 +0000 (17:41 -0500)
committerMarco Yuen <marcoy@gmail.com>
Wed, 21 Dec 2011 22:41:45 +0000 (17:41 -0500)
config.planetlab/bootstrapfs.post

index 110df34..8e7c287 100644 (file)
@@ -15,18 +15,24 @@ rm -rf ${vdir}/etc/yum.conf ${vdir}/etc/yum.repos.d
 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 off || :
+chroot ${vdir} /sbin/chkconfig util-vserver off || :
 # 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 vservers-default ; this is to automatically restart vservers, let nm do that
-chroot ${vdir} /sbin/chkconfig vservers-default off || :
+chroot ${vdir} /sbin/chkconfig vservers-default off || :
 # turn ON vprocunhide ; is required with kernels that have CONFIG_VSERVER_PROC_SECURE enabled
 # which is the case for our k32 kernel
 # chroot ${vdir} /sbin/chkconfig vprocunhide on || :
 
+# fprobe doesn't work yet
+chroot ${vdir} /sbin/chkconfig fprobe-ulog off || :
+
+# turn off cgconfig
+chroot ${vdir} /sbin/chkconfig cgconfig off || :
+
 # turn ON lxc-reference.
 chroot ${vdir} /sbin/chkconfig lxc-reference on || :