umount /var/{run,lock}

This commit is contained in:
LaMont Jones 2006-01-27 03:57:56 +00:00
parent 13930b49ed
commit 3ca905611a
2 changed files with 6 additions and 2 deletions

6
debian/changelog vendored
View File

@ -1,10 +1,14 @@
livecd-rootfs (0.27) UNRELEASED; urgency=low
[ Adam Conrad ]
* Copy the kernel out of the livefs as well, so we have one that matches.
* Enable rudimentary support for squashfs filesystems, initially enabling
it on the primary architectures only (powerpc, i386, amd64)
-- Adam Conrad <adconrad@0c3.net> Sat, 7 Jan 2006 00:25:10 +1100
[ LaMont Jones ]
* umount /var/{run,lock}
-- LaMont Jones <lamont@ubuntu.com> Thu, 26 Jan 2006 20:57:04 -0700
livecd-rootfs (0.26) hoary-cat; urgency=low

View File

@ -10,7 +10,7 @@ SQUASH_ARCHES="i386 amd64 powerpc"
CLOOP_ARCHES="ia64 hppa sparc"
cleanup() {
for mnt in $MOUNTS ${ROOT}lib/modules/*/volatile; do
for mnt in $MOUNTS ${ROOT}lib/modules/*/volatile ${ROOT}var/{lock,run}; do
umount $mnt || true
done