X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lbuild-initvm.sh;h=f37f419be029df6b9c15e403ae07970e9e622702;hb=2caf9da75ef72a3daa085b984466daeb16019b2d;hp=17486d30521a6d5e21f1117e32be49184aa829be;hpb=6d57100e0a75e2c3b2dfc19b286aa56aa6188123;p=build.git diff --git a/lbuild-initvm.sh b/lbuild-initvm.sh index 17486d30..f37f419b 100755 --- a/lbuild-initvm.sh +++ b/lbuild-initvm.sh @@ -19,6 +19,8 @@ export PATH=$PATH:/bin:/sbin . build.common +# XXX fixme : when creating a 32bits VM we need to call linux32 as appropriate...s + DEFAULT_FCDISTRO=f20 DEFAULT_PLDISTRO=lxc DEFAULT_PERSONALITY=linux64 @@ -71,7 +73,7 @@ function package_method () { fcdistro=$1; shift case $fcdistro in f[0-9]*|centos[0-9]*|sl[0-9]*) echo yum ;; - squeeze|wheezy|jessie|oneiric|precise|quantal|raring|saucy) echo debootstrap ;; + squeeze|wheezy|jessie|oneiric|precise|quantal|raring|saucy|trusty) echo debootstrap ;; *) echo Unknown distro $fcdistro ;; esac } @@ -214,6 +216,9 @@ function fedora_configure() { # set the hostname case "$fcdistro" in f18|f2?) + cat < ${lxc_root}/etc/sysconfig/network +NETWORKING=yes +EOF cat < ${lxc_root}/etc/hostname $GUEST_HOSTNAME EOF @@ -272,8 +277,8 @@ function fedora_configure_init() { # don't mount devpts, for pete's sake sed -i 's/^.*dev.pts.*$/#\0/' ${lxc_root}/etc/rc.sysinit sed -i 's/^.*dev.pts.*$/#\0/' ${lxc_root}/etc/rc.d/rc.sysinit - chroot ${lxc_root} chkconfig udev-post off - chroot ${lxc_root} chkconfig network on + chroot ${lxc_root} $personality chkconfig udev-post off + chroot ${lxc_root} $personality chkconfig network on } # this code of course is for guests that do run on systemd @@ -296,7 +301,7 @@ function fedora_configure_systemd() { ln -sf /dev/null ${lxc_root}/etc/systemd/system/"getty@.service" rm -f ${lxc_root}/etc/systemd/system/getty.target.wants/*service || : # can't seem to handle this one with systemctl - chroot ${lxc_root} chkconfig network on + chroot ${lxc_root} $personality chkconfig network on } # overwrite container yum config @@ -310,7 +315,7 @@ function fedora_configure_yum () { pldistro=$1; shift # rpm --rebuilddb - chroot $lxc_root rpm --rebuilddb + chroot ${lxc_root} $personality rpm --rebuilddb echo "Initializing yum.repos.d in $lxc" rm -f $lxc_root/etc/yum.repos.d/* @@ -330,7 +335,7 @@ baseurl=$FEDORA_MIRROR_BASE/updates/\$releasever/\$basearch/ enabled=1 metadata_expire=7d gpgcheck=1 -gpgkey=$FEDORA_MIRROR_KEYS/keys/RPM-GPG-KEY-fedora-$release-primary +gpgkey=$FEDORA_MIRROR_KEYS/RPM-GPG-KEY-fedora-$release-primary EOF # for using vtest-init-lxc.sh as a general-purpose lxc creation wrapper @@ -363,7 +368,7 @@ function debian_mirror () { case $fcdistro in squeeze|wheezy|jessie) echo http://ftp2.fr.debian.org/debian/ ;; - oneiric|precise|quantal|raring|saucy) + oneiric|precise|quantal|raring|saucy|trusty) echo http://mir1.ovh.net/ubuntu/ubuntu/ ;; *) echo unknown distro $fcdistro; exit 1;; esac @@ -379,10 +384,10 @@ function debian_install () { debootstrap --arch $arch $fcdistro $lxc_root $mirror # just like with fedora we ensure a few packages get installed as well # not started yet - #virsh -c lxc:/// lxc-enter-namespace $lxc /bin/bash -c "apt-get update" - #virsh -c lxc:/// lxc-enter-namespace $lxc /bin/bash -c "apt-get -y install $DEBIAN_PREINSTALLED" - chroot $lxc_root apt-get update - chroot $lxc_root apt-get -y install $DEBIAN_PREINSTALLED + #virsh -c lxc:/// lxc-enter-namespace $lxc /usr/bin/$personality /bin/bash -c "apt-get update" + #virsh -c lxc:/// lxc-enter-namespace $lxc /usr/bin/$personality /bin/bash -c "apt-get -y install $DEBIAN_PREINSTALLED" + chroot ${lxc_root} $personality apt-get update + chroot ${lxc_root} $personality apt-get -y install $DEBIAN_PREINSTALLED # configure hostname cat < ${lxc_root}/etc/hostname $GUEST_HOSTNAME @@ -587,22 +592,22 @@ function devel_or_vtest_tools () { ### install individual packages, then groups # get target arch - use uname -i here (we want either x86_64 or i386) - lxc_arch=$(chroot $lxc_root uname -i) + lxc_arch=$(chroot ${lxc_root} $personality uname -i) # on debian systems we get arch through the 'arch' command - [ "$lxc_arch" = "unknown" ] && lxc_arch=$(chroot $lxc_root arch) + [ "$lxc_arch" = "unknown" ] && lxc_arch=$(chroot ${lxc_root} $personality arch) packages=$(pl_getPackages -a $lxc_arch $fcdistro $pldistro $pkgsfile) groups=$(pl_getGroups -a $lxc_arch $fcdistro $pldistro $pkgsfile) case "$pkg_method" in yum) - [ -n "$packages" ] && chroot $lxc_root yum -y install $packages + [ -n "$packages" ] && chroot ${lxc_root} $personality yum -y install $packages for group_plus in $groups; do group=$(echo $group_plus | sed -e "s,+++, ,g") - chroot $lxc_root yum -y groupinstall "$group" + chroot ${lxc_root} $personality yum -y groupinstall "$group" done # store current rpm list in /init-lxc.rpms in case we need to check the contents - chroot $lxc_root rpm -aq > $lxc_root/init-lxc.rpms + chroot ${lxc_root} $personality rpm -aq > $lxc_root/init-lxc.rpms ;; debootstrap) # for ubuntu @@ -617,8 +622,8 @@ function devel_or_vtest_tools () { fi for package in $packages ; do # container not started yet - #virsh -c lxc:/// lxc-enter-namespace $lxc /bin/bash -c "apt-get install -y $package" || : - chroot $lxc_root apt-get install -y $package || : + #virsh -c lxc:/// lxc-enter-namespace $lxc /usr/bin/$personality /bin/bash -c "apt-get install -y $package" || : + chroot ${lxc_root} $personality apt-get install -y $package || : done ### xxx todo install groups with apt.. ;; @@ -633,21 +638,25 @@ function devel_or_vtest_tools () { function post_install () { lxc=$1; shift personality=$1; shift + # setup localtime from the host + cp /etc/localtime $lxc_root/etc/localtime if [ -n "$BUILD_MODE" ] ; then post_install_build $lxc $personality - virsh -c lxc:/// start $lxc - # manually run dhclient in guest - somehow this network won't start on its own - virsh -c lxc:/// lxc-enter-namespace $lxc /bin/bash -c "dhclient $VIF_GUEST" + if [ -n "$START_VM" ] ; then + virsh -c lxc:/// start $lxc + # manually run dhclient in guest - somehow this network won't start on its own + virsh -c lxc:/// lxc-enter-namespace $lxc /usr/bin/$personality /bin/bash -c "dhclient $VIF_GUEST" + fi else post_install_myplc $lxc $personality - virsh -c lxc:/// start $lxc -# it sounds like we don't need ssh per se any more -# it still makes sense to wait for network readiness though -# some day maybe... - wait_for_ssh $lxc + if [ -n "$START_VM" ] ; then + virsh -c lxc:/// start $lxc + # it sounds like we don't need ssh per se any more + # it still makes sense to wait for network readiness though + # some day maybe... + wait_for_ssh $lxc + fi fi - # setup localtime from the host - cp /etc/localtime $lxc_root/etc/localtime } function post_install_build () { @@ -661,7 +670,7 @@ function post_install_build () { ### From myplc-devel-native.spec # be careful to backslash $ in this, otherwise it's the root context that's going to do the evaluation - cat << EOF | chroot $lxc_root bash -x + cat << EOF | chroot ${lxc_root} $personality bash -x # customize root's prompt /bin/cat << PROFILE > /root/.profile @@ -681,7 +690,7 @@ function post_install_myplc () { personality=$1; shift # be careful to backslash $ in this, otherwise it's the root context that's going to do the evaluation - cat << EOF | chroot $lxc_root bash -x + cat << EOF | chroot ${lxc_root} $personality bash -x # create /etc/sysconfig/network if missing [ -f /etc/sysconfig/network ] || /bin/echo NETWORKING=yes > /etc/sysconfig/network @@ -750,6 +759,7 @@ function usage () { echo " by default we use devel.pkgs (build mode) or runtime.pkgs (test mode)" echo " -i image - the location of the rootfs" echo " -m memory - the amount of allocated memory in MB - defaults to $DEFAULT_MEMORY MB" + echo " -s do not start VM" echo " -v be verbose" exit 1 } @@ -765,7 +775,8 @@ function main () { exit 1 fi - while getopts "n:f:d:p:r:P:i:m:v" opt ; do + START_VM=true + while getopts "n:f:d:p:r:P:i:m:sv" opt ; do case $opt in n) GUEST_HOSTNAME=$OPTARG;; f) fcdistro=$OPTARG;; @@ -775,6 +786,7 @@ function main () { P) PREINSTALLED=$OPTARG;; i) IMAGE=$OPTARG;; m) MEMORY=$OPTARG;; + s) START_VM= ;; v) VERBOSE=true; set -x;; *) usage ;; esac