add NodeManage-topo to the modules to monitor
[build.git] / vbuild-init-vserver.sh
index d9491fe..7dc7e41 100755 (executable)
@@ -82,7 +82,7 @@ EOF
 function package_method () {
     fcdistro=$1; shift
     case $fcdistro in
-       f[0-9]*|centos[0-9]*) echo yum ;;
+       f[0-9]*|centos[0-9]*|sl[0-9]*) echo yum ;;
        lenny|etch) echo debootstrap ;;
        *) echo Unknown distro $fcdistro ;;
     esac 
@@ -176,9 +176,15 @@ function setup_vserver () {
     # Set persistent for the network context
     echo persistent,lback_allow > /etc/vservers/$vserver/nflags
 
+    # Set cflags
+    echo -e "persistent\n~info_init" > /etc/vservers/$vserver/cflags
+
     # Enable cgroup
     mkdir /etc/vservers/$vserver/cgroup
 
+    # Start Vserver automatically on boot
+    echo "default" > /etc/vservers/$vserver/apps/init/mark
+
     # Set the init style of your vserver to plain for f13
     case $fcdistro in 
        f13|f14) echo plain > /etc/vservers/$vserver/apps/init/style ;;