X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=blobdiff_plain;f=chroot-script;h=ea845d142c0c112074d8391d9be4dba9def64944;hp=4142beb598fd8ea9ad93916d2a95cd6a7f804a7a;hb=687068e816c608239edf287210beb1d73f08efda;hpb=e83c790d7989f0671b16c94ddfe5c2f32ea90576 diff --git a/chroot-script b/chroot-script index 4142beb..ea845d1 100644 --- a/chroot-script +++ b/chroot-script @@ -69,6 +69,7 @@ fi echo "Activating shadow passwords." shadowconfig on echo "Setting password for user root:" +# TODO: typing the wrong password will exit chroot script passwd echo "" @@ -131,6 +132,10 @@ KERNELVER=${KERNELIMG#/boot/vmlinuz-} # generate initrd if [ -n "$INITRD" ] ; then + if [ "$RELEASE" = 'sarge' ] ; then + echo "Release sarge detected, will not create an initrd." + return 0 + fi echo "Generating initrd." update-initramfs -c -t -k $KERNELVER if [ -f "/boot/initrd.img-$KERNELVER" ] ; then @@ -144,7 +149,12 @@ if [ -n "$GROOT" ] ; then # copy stage-files to /boot/grub/ [ -d /boot/grub/ ] || mkdir /boot/grub - cp /usr/lib/grub/i386-pc/* /boot/grub/ + if [ -d /usr/lib/grub/i386-pc/ ] ; then + cp /usr/lib/grub/i386-pc/* /boot/grub/ + else + # sarge ships grub files in another directory + cp /lib/grub/i386-pc/* /boot/grub/ + fi # finally install grub update-grub -y