From 5ddf3b6a324a607e804ff4c6de42d276ddf5ed99 Mon Sep 17 00:00:00 2001 From: parmentelat Date: Mon, 3 Dec 2018 15:53:56 +0100 Subject: [PATCH] tweaks in container building for f29 --- lbuild-initvm.sh | 175 ++++++++++++++++++++++++++--------------------- 1 file changed, 96 insertions(+), 79 deletions(-) diff --git a/lbuild-initvm.sh b/lbuild-initvm.sh index 2bee3134..9cc3fb5f 100755 --- a/lbuild-initvm.sh +++ b/lbuild-initvm.sh @@ -24,7 +24,7 @@ export PATH=$PATH:/bin:/sbin # it works, but this really is poor practice # we should have an lxc_root function instead function lxcroot () { - lxc=$1; shift + local lxc=$1; shift echo /vservers/$lxc } @@ -50,13 +50,13 @@ DEBIAN_PREINSTALLED="openssh-server openssh-client" ########## networking utilities function gethostbyname () { - hostname=$1 + local hostname=$1 python -c "import socket; print socket.gethostbyname('"$hostname"')" 2> /dev/null } # e.g. 21 -> 255.255.248.0 function masklen_to_netmask () { - masklen=$1; shift + local masklen=$1; shift python < *before* populating it function almost_empty () { - dir="$1"; shift ; + local dir="$1"; shift ; # non existing is fine [ ! -d $dir ] && return 0; # need to have at most one file - count=$(cd $dir; ls | wc -l); [ $count -le 1 ]; + local count=$(cd $dir; ls | wc -l) + [ $count -le 1 ] } ############################## @@ -126,10 +127,10 @@ function fedora_install() { set -x set -e - lxc=$1; shift - lxc_root=$(lxcroot $lxc) + local lxc=$1; shift + local lxc_root=$(lxcroot $lxc) - cache=/var/cache/lxc/fedora/$arch/${fedora_release} + local cache=/var/cache/lxc/fedora/$arch/${fedora_release} mkdir -p $cache ( @@ -160,7 +161,7 @@ function fedora_install() { function fedora_download() { set -x - cache=$1; shift + local cache=$1; shift # check the mini fedora was not already downloaded INSTALL_ROOT=$cache/partial @@ -189,12 +190,14 @@ function fedora_download() { # since fedora18 the rpms are scattered by first name # first try the second version of fedora-release first RELEASE_URLS="" + local subindex for subindex in 3 2 1; do RELEASE_URLS="$RELEASE_URLS $MIRROR_URL/Packages/f/fedora-release-${fedora_release}-1.noarch.rpm" done RELEASE_TARGET=$INSTALL_ROOT/fedora-release-${fedora_release}.noarch.rpm - found="" + local found="" + local attempt for attempt in $RELEASE_URLS; do if curl --silent --fail $attempt -o $RELEASE_TARGET; then echo "Successfully Retrieved $attempt" @@ -236,8 +239,9 @@ function fedora_configure() { set -x set -e - lxc=$1; shift - lxc_root=$(lxcroot $lxc) + local lxc=$1; shift + local fcdistro=$1; shift + local lxc_root=$(lxcroot $lxc) # disable selinux in fedora mkdir -p $lxc_root/selinux @@ -251,7 +255,7 @@ EOF $GUEST_HOSTNAME EOF - dev_path="${lxc_root}/dev" + local dev_path="${lxc_root}/dev" rm -rf $dev_path mkdir -p $dev_path mknod -m 666 ${dev_path}/null c 1 3 @@ -273,8 +277,19 @@ EOF fedora_configure_systemd $lxc - guest_ifcfg=${lxc_root}/etc/sysconfig/network-scripts/ifcfg-$VIF_GUEST - ( [ -n "$NAT_MODE" ] && write_guest_ifcfg_natip || write_guest_ifcfg_publicip ) > $guest_ifcfg + local guest_ifcfg=${lxc_root}/etc/sysconfig/network-scripts/ifcfg-$VIF_GUEST + mkdir -p $(dirname ${guest_ifcfg}) + # starting with f29, we go for NetworkManager as older network-scripts + # is about to be deprecated + local nm_controlled=false + [[ $fcdistro == f29 ]] && nm_controlled=true + [[ $fcdistro == f3[0-9] ]] && nm_controlled=true + + if [ -n "$NAT_MODE" ]; then + write_guest_ifcfg_natip $nm_controlled + else + write_guest_ifcfg_publicip $nm_controlled + fi > $guest_ifcfg [ -z "$IMAGE" ] && fedora_configure_yum $lxc $fcdistro $pldistro @@ -285,8 +300,8 @@ EOF function fedora_configure_systemd() { set -e set -x - lxc=$1; shift - lxc_root=$(lxcroot $lxc) + local lxc=$1; shift + local lxc_root=$(lxcroot $lxc) # so ignore if we can't find /etc/systemd at all [ -d ${lxc_root}/etc/systemd ] || return 0 @@ -309,11 +324,11 @@ function fedora_configure_yum () { set -e trap failure ERR INT - lxc=$1; shift - fcdistro=$1; shift - pldistro=$1; shift + local lxc=$1; shift + local fcdistro=$1; shift + local pldistro=$1; shift - lxc_root=$(lxcroot $lxc) + local lxc_root=$(lxcroot $lxc) # rpm --rebuilddb chroot ${lxc_root} $personality rpm --rebuilddb @@ -370,7 +385,7 @@ EOF # http://mirrors.ubuntu.com/mirrors.txt # need to specify the right mirror for debian variants like ubuntu and the like function debian_mirror () { - fcdistro=$1; shift + local fcdistro=$1; shift case $fcdistro in wheezy|jessie) echo http://ftp2.fr.debian.org/debian/ ;; @@ -383,11 +398,11 @@ function debian_mirror () { function debian_install () { set -e set -x - lxc=$1; shift - lxc_root=$(lxcroot $lxc) + local lxc=$1; shift + local lxc_root=$(lxcroot $lxc) mkdir -p $lxc_root - arch=$(canonical_arch $personality $fcdistro) - mirror=$(debian_mirror $fcdistro) + local arch=$(canonical_arch $personality $fcdistro) + local mirror=$(debian_mirror $fcdistro) debootstrap --no-check-gpg --arch $arch $fcdistro $lxc_root $mirror # just like with fedora we ensure a few packages get installed as well # not started yet @@ -403,7 +418,7 @@ EOF } function debian_configure () { - guest_interfaces=${lxc_root}/etc/network/interfaces + local guest_interfaces=${lxc_root}/etc/network/interfaces ( [ -n "$NAT_MODE" ] && write_guest_interfaces_natip || write_guest_interfaces_publicip ) > $guest_interfaces } @@ -430,12 +445,12 @@ function setup_lxc() { set -e #trap failure ERR INT - lxc=$1; shift - fcdistro=$1; shift - pldistro=$1; shift - personality=$1; shift + local lxc=$1; shift + local fcdistro=$1; shift + local pldistro=$1; shift + local personality=$1; shift - lxc_root=$(lxcroot $lxc) + local lxc_root=$(lxcroot $lxc) # create lxc container @@ -450,7 +465,7 @@ function setup_lxc() { chroot $(lxcroot $lxc) $personality rm -rf /var/lib/rpm/__db.00{0,1,2,3,4,5,6,7,8,9} chroot $(lxcroot $lxc) $personality rpm --rebuilddb fi - fedora_configure $lxc || { echo "failed to configure fedora for a container"; exit 1 ; } + fedora_configure $lxc $fcdistro || { echo "failed to configure fedora for a container"; exit 1 ; } ;; debootstrap) if [ -z "$IMAGE" ]; then @@ -481,7 +496,7 @@ function setup_lxc() { chmod 600 $lxc_root/root/.ssh/authorized_keys # don't keep the input xml, this can be retrieved at all times with virsh dumpxml - config_xml=/tmp/$lxc.xml + local config_xml=/tmp/$lxc.xml ( [ -n "$NAT_MODE" ] && write_lxc_xml_natip $lxc || write_lxc_xml_publicip $lxc ) > $config_xml # define lxc container for libvirt @@ -500,8 +515,8 @@ function setup_lxc() { # function write_lxc_xml_publicip () { - lxc=$1; shift - lxc_root=$(lxcroot $lxc) + local lxc=$1; shift + local lxc_root=$(lxcroot $lxc) cat < $lxc @@ -536,8 +551,8 @@ EOF # grant build guests the ability to do mknods function write_lxc_xml_natip () { - lxc=$1; shift - lxc_root=$(lxcroot $lxc) + local lxc=$1; shift + local lxc_root=$(lxcroot $lxc) cat < $lxc @@ -574,18 +589,20 @@ EOF # this one is dhcp-based function write_guest_ifcfg_natip () { + local nm_controlled=$1; shift cat <