X-Git-Url: https://git.grml.org/?p=grml-live.git;a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Fconfig%2Fscripts%2FGRMLBASE%2F98-clean-chroot;h=f293e910edea187ec5736c5604b248bbc388132a;hp=712ef68a495efbe7f3d39d06e3cbd3a6e3516cdb;hb=acf12d4123bd68f;hpb=c5d10137c4ab85785e5282041aeda3226590d3c6 diff --git a/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot b/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot index 712ef68..f293e91 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot +++ b/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot @@ -35,22 +35,20 @@ if $ROOTCMD dpkg-divert --list | grep -q '/usr/sbin/update-grub' ; then $ROOTCMD dpkg-divert --rename --remove /usr/sbin/update-grub fi +# revert dpkg-divert of hooks/instsoft.GRMLBASE, which is +# used to work around a grub-probe<->openvz bug +if $ROOTCMD dpkg-divert --list | grep -q '/usr/sbin/grub-probe' ; then + echo "Undoing dpkg-divert of grub-probe executable" + $ROOTCMD rm -f /usr/sbin/grub-probe + $ROOTCMD dpkg-divert --rename --remove /usr/sbin/grub-probe +fi + # revert udev workaround of hooks/updatebase.GRMLBASE if grep -q 'updatebase.GRMLBASE' ${target}/etc/udev/kernel-upgrade 2>/dev/null ; then echo "Removing /etc/udev/kernel-upgrade created by updatebase.GRMLBASE" $ROOTCMD rm -f /etc/udev/kernel-upgrade fi -echo "Removing /var/lib/apt/lists/*-stuff, dpkg-status-old and pkgcache.bin" -rm -f $target/var/lib/apt/lists/*Packages \ - $target/var/lib/apt/lists/*Release \ - $target/var/lib/apt/lists/*Sources \ - $target/var/lib/apt/lists/*IndexDiff \ - $target/var/lib/apt/lists/*.gpg \ - $target/var/cache/apt-show-versions/* \ - $target/var/cache/debconf/templates.dat-old \ - $target/var/cache/apt/*.bin - echo "Cleaning apt places" $ROOTCMD apt-get check 2>/dev/null $ROOTCMD dpkg --clear-avail @@ -96,9 +94,10 @@ rm -rf --one-file-system $target/etc/sysconfig/* \ $target/etc/*group- $target/var/spool/postfix/maildrop/* \ $target/etc/*.old $target/etc/*.original \ $target/etc/lvm/.cache $target/etc/lvm/cache/.cache \ - $target/etc/lvm/backup/main $target/tmp/* \ + $target/etc/lvm/backup/* $target/tmp/* \ $target/var/tmp/* $target/var/backups/* \ - $target/var/lib/mysql $target/var/log/lilo_log.* $target/core* + $target/var/lib/mysql $target/var/log/lilo_log.* $target/core* \ + $target/etc/blkid.tab # remove only "temporary" or saved files in the given directories nuke(){ @@ -114,6 +113,9 @@ zero(){ done } +echo "Removing possible leftovers from update-pciids runs" +rm -f "${target}"/wget-log* + echo "Cleaning log and cache directories" nuke ${target}/var/log ${target}/var/cache zero ${target}/var/account/pacct \ @@ -181,30 +183,20 @@ if ! [ -r $target/etc/ld.so.nohwcap ] ; then touch $target/etc/ld.so.nohwcap fi -# installation of resolvconf in chroot *with* /proc -# is different from an installation without /proc, -# so make sure it is OK in any case if ! [ -d $target/etc/resolvconf ] ; then echo "Warning: resolvconf not installed" else echo "Setting up resolvconf" - if [ -L $target/etc/resolvconf/run ] ; then # resolvconf with /run - # /etc/resolvconf/run symlinks to /run/resolvconf - RESOLV_CONF=/run/resolvconf/ - else # no /run present - RESOLV_CONF=/etc/resolvconf/run/ - fi - - rm -rf ${target}/${RESOLV_CONF} - mkdir -p ${target}/${RESOLV_CONF} - - touch ${target}/${RESOLV_CONF}/enable-updates - mkdir ${target}/${RESOLV_CONF}/interface + rm -f "${target}"/etc/resolvconf/resolv.conf.d/original + rm -f "${target}"/etc/resolv.conf + ln -s /run/resolvconf/resolv.conf "${target}"/etc/resolv.conf +fi - cat > ${target}/${RESOLV_CONF}/resolv.conf << EOF -# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8) -# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN -EOF +# make sure we don't leak any mdadm configurations +# that are present on the build system to the live system +if [ -f "${target}/etc/mdadm/mdadm.conf" ] ; then + echo "Found /etc/mdadm/mdadm.conf, getting rid of any possible enabled ARRAY settings." + sed -i '/^ARRAY/d' "${target}/etc/mdadm/mdadm.conf" fi if ! $ROOTCMD test -x /usr/bin/updatedb ; then @@ -214,5 +206,10 @@ else $ROOTCMD updatedb --prunepaths='/tmp /usr/tmp /var/tmp /grml /root /proc /sys' fi +if [ -r "${target}/etc/machine-id" ] ; then + echo "Removing /etc/machine-id generated by systemd" + rm -f "$target/etc/machine-id" +fi + ## END OF FILE ################################################################# # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=2