From: Michael Prokop Date: Wed, 18 Jan 2012 16:06:46 +0000 (+0100) Subject: GRMLBASE/98-clean-chroot: get rid of /etc/mtab X-Git-Tag: v0.18.1~8 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=d08e5220bdb647ace920fa78170d18829061cb59 GRMLBASE/98-clean-chroot: get rid of /etc/mtab This is addressing http://bts.grml.org/grml/issue1136 ("mount messages during bootup"), *testing* now... --- diff --git a/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot b/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot index b2f30a6..e435c71 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot +++ b/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot @@ -94,6 +94,14 @@ rm -rf --one-file-system $target/etc/sysconfig/* \ $target/var/lib/mysql $target/var/log/lilo_log.* $target/core* \ $target/etc/blkid.tab +# avoid data leakage into target system +if ! [ -f "$target/etc/mtab" ]; then + echo "/etc/mtab does not exist or is not a regular file, not touching." +else + echo "Removing /etc/mtab" + rm -f "$target/etc/mtab" +fi + # remove only "temporary" or saved files in the given directories nuke(){ for i in $(find "$@" -name \*.gz -o -name \*.bz2 -o -name \*.0 2>/dev/null); do