X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=prep.sh;h=8c7dc013ce79f67b800fe3954b632a2fd580875f;hb=976d12b1ac57cd0700da7d74657bfd5f2215dc25;hp=2b0db750b2d7b7bf45193d7820366902e93baca1;hpb=4691ed576c2652df34aa86f4066f18b458de1c78;p=bootcd.git diff --git a/prep.sh b/prep.sh index 2b0db75..8c7dc01 100755 --- a/prep.sh +++ b/prep.sh @@ -48,10 +48,15 @@ echo "* Creating fedora root image" pl_root_makedevs $bootcd pkgsfile=$(pl_locateDistroFile ../build/ $pldistro bootcd.pkgs) pl_root_mkfedora $bootcd $pldistro $pkgsfile +echo "** DBG1 - contents of /boot after mkfedora" +ls -R $bootcd/boot pl_root_tune_image $bootcd +echo "** DBG2 - contents of /boot after tune_image" +ls -R $bootcd/boot # Add site_admin console account to BootCD: with root priv, and self passwd -CRYPT_SA_PASSWORD=$(python -c "import crypt, random, string; salt = [random.choice(string.letters + string.digits + \"./\") for i in range(0,8)] ; print crypt.crypt('site_admin', '\$1\$' + \"\".join(salt) + '\$')") +echo "* Creating site_admin account" +CRYPT_SA_PASSWORD=$(python3 -c "import crypt, random, string; salt = [random.choice(string.ascii_letters + string.digits + \"./\") for i in range(0,8)] ; print(crypt.crypt('site_admin', '\$1\$' + \"\".join(salt) + '\$'))") chroot ${bootcd} /usr/sbin/useradd -p "$CRYPT_SA_PASSWORD" -o -g 0 -u 0 -m site_admin # Install ipnmac (for SuperMicro machines with IPMI) @@ -126,14 +131,47 @@ isofs=$PWD/build/isofs install -d -m 755 $isofs # Copy the kernel out +echo "* BootCD - locating kernel" for kernel in $bootcd/boot/vmlinuz-* ; do - if [ -f $kernel ] ; then - install -D -m 644 $kernel $isofs/kernel - echo "* BootCD kernel created from $kernel" - echo "* kernel created from $kernel" > $isofs/kernel.from + if [ -f "$kernel" ] ; then + echo "* BootCD kernel (1) creating from $kernel" + echo "* kernel created (1) from $kernel" > $isofs/kernel.from + install -D -m 644 $kernel $isofs/kernel fi done +# patch - Thierry - dec. 2015 +# somehow we see this good-old code produce a bootcd without a /kernel +# this is odd because as far as rpm is concerned, the name should not have changed +# anyways, at this point, here's what can be found in /boot +# [root@2015-12-07--f23-bcd boot]# pwd +# /build/BUILD/bootcd-lxc-f23-x86_64-5.3/bootcd/build/bootcd/boot +# [root@2015-12-07--f23-bcd boot]# ls -R +# .: +# 8adf0b93a7f44be69499d21fa18ab5b8 loader +# +# ./8adf0b93a7f44be69499d21fa18ab5b8: +# 4.2.6-301.fc23.x86_64 +# +# ./8adf0b93a7f44be69499d21fa18ab5b8/4.2.6-301.fc23.x86_64: +# initrd linux +# +# ./loader: +# entries +# +# ./loader/entries: +# 8adf0b93a7f44be69499d21fa18ab5b8-4.2.6-301.fc23.x86_64.conf + +# second chance if first approach would not work +if [ ! -f $isofs/kernel ] ; then + kernel=$(find $bootcd/boot -name linux) + if [ -f "$kernel" ] ; then + echo "* BootCD kernel (2) creating from $kernel" + echo "* kernel created (2) from $kernel" > $isofs/kernel.from + install -D -m 644 $kernel $isofs/kernel + fi +fi + if [ ! -f $isofs/kernel ] ; then echo "* BootCD prep.sh : FATAL: could not locate kernel - exiting" exit 1