mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-03-04 16:01:24 +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
|
||||
|
||||
* 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
|
||||
|
||||
|
12
livecd.sh
12
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
|
||||
|
||||
@ -140,11 +144,15 @@ mv ${ROOT}etc/apt/trusted.gpg.$$ ${ROOT}etc/apt/trusted.gpg
|
||||
# get rid of the .debs - we don't need them.
|
||||
chroot ${ROOT} apt-get clean
|
||||
rm ${ROOT}var/lib/apt/lists/*_*
|
||||
rm ${ROOT}var/spool/postfix/maildrop/*
|
||||
|
||||
# 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 > 2097150 )) && SZ=2097150
|
||||
rm -f $IMG
|
||||
dd if=/dev/zero of=$IMG seek=$SZ bs=1024 count=1
|
||||
if [-n "$UINUM" ]; then
|
||||
INUM=""
|
||||
if [ -n "$UINUM" ]; then
|
||||
INUM="-N "$(python -c "print $(find ${ROOT} | wc -l)+$UINUM")
|
||||
fi
|
||||
mke2fs $INUM -Osparse_super -F $IMG
|
||||
|
Loading…
x
Reference in New Issue
Block a user