mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-05-23 16:51:32 +00:00
cleanup
This commit is contained in:
parent
ba1ca3ca02
commit
1f87003934
2
debian/changelog
vendored
2
debian/changelog
vendored
@ -1,6 +1,8 @@
|
|||||||
livecd-rootfs (0.2) hoary; urgency=low
|
livecd-rootfs (0.2) hoary; urgency=low
|
||||||
|
|
||||||
* Better divertion setup, fix sources.list
|
* Better divertion setup, fix sources.list
|
||||||
|
* copyright in file.
|
||||||
|
* Flush postfix's queue of the install mail
|
||||||
|
|
||||||
-- LaMont Jones <lamont@debian.org> Fri, 7 Jan 2005 13:00:37 -0700
|
-- LaMont Jones <lamont@debian.org> Fri, 7 Jan 2005 13:00:37 -0700
|
||||||
|
|
||||||
|
10
livecd.sh
10
livecd.sh
@ -1,4 +1,8 @@
|
|||||||
#!/bin/sh -xe
|
#!/bin/sh -eu
|
||||||
|
|
||||||
|
#################################################################
|
||||||
|
#### (c) Copyright 2004 Canonical Ltd. All rights reserved. ####
|
||||||
|
#################################################################
|
||||||
|
|
||||||
# Depends: debootstrap, rsync, cloop-utils, python
|
# Depends: debootstrap, rsync, cloop-utils, python
|
||||||
|
|
||||||
@ -140,10 +144,14 @@ mv ${ROOT}etc/apt/trusted.gpg.$$ ${ROOT}etc/apt/trusted.gpg
|
|||||||
# get rid of the .debs - we don't need them.
|
# get rid of the .debs - we don't need them.
|
||||||
chroot ${ROOT} apt-get clean
|
chroot ${ROOT} apt-get clean
|
||||||
rm ${ROOT}var/lib/apt/lists/*_*
|
rm ${ROOT}var/lib/apt/lists/*_*
|
||||||
|
rm ${ROOT}var/spool/postfix/maildrop/*
|
||||||
|
|
||||||
# Make the filesystem, with some room for meta data and such
|
# Make the filesystem, with some room for meta data and such
|
||||||
SZ=$(python -c "print int($(du -sk $ROOT|sed 's/[^0-9].*$//')*1.1+$USZ)")
|
SZ=$(python -c "print int($(du -sk $ROOT|sed 's/[^0-9].*$//')*1.1+$USZ)")
|
||||||
|
(( SZ > 2097150 )) && SZ=2097150
|
||||||
|
rm -f $IMG
|
||||||
dd if=/dev/zero of=$IMG seek=$SZ bs=1024 count=1
|
dd if=/dev/zero of=$IMG seek=$SZ bs=1024 count=1
|
||||||
|
INUM=""
|
||||||
if [ -n "$UINUM" ]; then
|
if [ -n "$UINUM" ]; then
|
||||||
INUM="-N "$(python -c "print $(find ${ROOT} | wc -l)+$UINUM")
|
INUM="-N "$(python -c "print $(find ${ROOT} | wc -l)+$UINUM")
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user