From: Michael Prokop Date: Thu, 27 Oct 2011 21:38:07 +0000 (+0200) Subject: do not zero out /var/spool in GRMLBASE/98-clean-chroot [Closes: issue1065] X-Git-Tag: v0.16.1~3 X-Git-Url: http://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=4eac603eb7cb41ca688a09ccf97a0de1a72f9579 do not zero out /var/spool in GRMLBASE/98-clean-chroot [Closes: issue1065] /var/spool might contain user provided data like a local mirror provided via MIRROR_DIRECTORY, so it's a showstopper to touch that. Thanks: Marek Malevic --- diff --git a/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot b/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot index 3667762..c2f3f77 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot +++ b/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot @@ -110,11 +110,14 @@ zero(){ echo "Cleaning log and cache directories" nuke ${target}/var/log ${target}/var/cache -zero ${target}/var/local ${target}/var/log \ - ${target}/var/spool ${target}/var/lib/games \ - ${target}/var/cache/man ${target}/var/lib/nfs \ - ${target}/var/lib/xkb ${target}/var/mail/grml \ - ${target}/var/account/pacct +zero ${target}/var/account/pacct \ + ${target}/var/cache/man \ + ${target}/var/lib/games \ + ${target}/var/lib/nfs \ + ${target}/var/lib/xkb \ + ${target}/var/local \ + ${target}/var/log \ + ${target}/var/mail/grml # on /run we don't have to create it if [ -d ${target}/var/run ] ; then