2007-09-23 08:04:46 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2010-09-02 11:12:37 +00:00
|
|
|
## live-build(7) - System Build Scripts
|
2010-09-26 10:38:38 +00:00
|
|
|
## Copyright (C) 2006-2010 Daniel Baumann <daniel@debian.org>
|
2010-09-02 11:12:37 +00:00
|
|
|
##
|
|
|
|
## live-build comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
|
|
|
|
## This is free software, and you are welcome to redistribute it
|
|
|
|
## under certain conditions; see COPYING for details.
|
|
|
|
|
2007-09-23 08:04:46 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2010-04-18 12:43:23 +00:00
|
|
|
# Including common functions
|
2010-09-07 13:11:20 +00:00
|
|
|
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
2010-04-18 12:43:23 +00:00
|
|
|
|
2009-01-30 19:17:00 -01:00
|
|
|
# Read meta config
|
2010-04-18 12:38:14 +00:00
|
|
|
if [ "${1}" != "noauto" ] && [ -x auto/clean ]
|
2009-01-30 19:17:00 -01:00
|
|
|
then
|
2010-04-18 12:40:09 +00:00
|
|
|
Echo_message "Executing auto/clean script."
|
2010-09-26 10:38:38 +00:00
|
|
|
./auto/clean ${@}
|
2010-09-13 19:20:54 +00:00
|
|
|
exit ${?}
|
2009-01-31 14:33:56 -01:00
|
|
|
fi
|
|
|
|
|
2010-04-18 12:38:14 +00:00
|
|
|
if [ "${1}" = "noauto" ]
|
2009-01-31 14:33:56 -01:00
|
|
|
then
|
2009-01-30 19:17:00 -01:00
|
|
|
shift
|
|
|
|
fi
|
|
|
|
|
2007-09-23 08:05:11 +00:00
|
|
|
# Setting static variables
|
2009-01-15 01:37:42 -01:00
|
|
|
DESCRIPTION="$(Echo 'clean up system build directories')"
|
2007-09-23 08:04:48 +00:00
|
|
|
HELP=""
|
2007-11-18 14:14:50 -01:00
|
|
|
USAGE="${PROGRAM} [--all] [--cache] [--chroot] [--binary] [--purge] [--remove] [--stage] [--source]"
|
2007-09-23 08:04:48 +00:00
|
|
|
|
2007-11-19 15:55:28 -01:00
|
|
|
#Arguments "${@}"
|
2007-09-23 08:04:48 +00:00
|
|
|
|
2007-09-23 08:04:46 +00:00
|
|
|
# Reading configuration files
|
2008-10-28 14:26:17 -01:00
|
|
|
Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
|
2007-09-23 08:04:46 +00:00
|
|
|
Set_defaults
|
|
|
|
|
2007-11-18 14:15:43 -01:00
|
|
|
# Avoid cases were users accidentally nuke their config/binary
|
2008-09-11 06:44:15 +00:00
|
|
|
if [ ! -d config ] && [ "$(basename ${PWD})" = "config" ]
|
2007-11-18 14:15:43 -01:00
|
|
|
then
|
2008-08-11 20:28:54 +00:00
|
|
|
Echo_error "%s is not a good Debian Live working directory to clean." "${PWD}"
|
2007-11-18 14:15:43 -01:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2007-09-23 08:05:12 +00:00
|
|
|
rm -f .lock
|
|
|
|
|
2008-03-02 00:00:38 -01:00
|
|
|
if [ -z "${*}" ]
|
2007-09-23 11:59:18 +00:00
|
|
|
then
|
2007-11-18 14:14:50 -01:00
|
|
|
ARGUMENTS="--all"
|
2007-09-23 11:59:18 +00:00
|
|
|
else
|
|
|
|
ARGUMENTS="${@}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
for ARGUMENT in ${ARGUMENTS}
|
2007-09-23 08:05:18 +00:00
|
|
|
do
|
|
|
|
case "${ARGUMENT}" in
|
2007-11-18 14:14:50 -01:00
|
|
|
--all)
|
2010-09-26 10:38:38 +00:00
|
|
|
LH=1 "${0}" noauto --chroot
|
|
|
|
LH=1 "${0}" noauto --binary
|
|
|
|
LH=1 "${0}" noauto --stage
|
|
|
|
LH=1 "${0}" noauto --source
|
2008-11-27 16:31:05 -01:00
|
|
|
|
2010-09-16 22:47:25 +00:00
|
|
|
rmdir --ignore-fail-on-non-empty auto > /dev/null 2>&1 || true
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--cache)
|
2010-09-07 13:11:20 +00:00
|
|
|
${LB_ROOT_COMMAND} rm -rf cache
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--chroot)
|
2007-09-23 08:05:18 +00:00
|
|
|
Echo_message "Cleaning chroot"
|
2010-09-07 13:11:20 +00:00
|
|
|
${LB_ROOT_COMMAND} umount -f chroot/sys > /dev/null 2>&1 || true
|
|
|
|
${LB_ROOT_COMMAND} umount -f chroot/proc/sys/fs/binfmt_misc > /dev/null 2>&1 || true
|
|
|
|
${LB_ROOT_COMMAND} umount -f chroot/proc > /dev/null 2>&1 || true
|
|
|
|
${LB_ROOT_COMMAND} umount -f chroot/lib/init/rw > /dev/null 2>&1 || true
|
|
|
|
${LB_ROOT_COMMAND} umount -f chroot/dev/shm > /dev/null 2>&1 || true
|
|
|
|
${LB_ROOT_COMMAND} umount -f chroot/dev/pts > /dev/null 2>&1 || true
|
|
|
|
${LB_ROOT_COMMAND} umount -f chroot/dev > /dev/null 2>&1 || true
|
|
|
|
${LB_ROOT_COMMAND} umount -f chroot/var/lib/dpkg > /dev/null 2>&1 || true
|
2007-09-23 08:05:18 +00:00
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
${LB_ROOT_COMMAND} umount -f chroot/binary.tmp > /dev/null 2>&1 || true
|
|
|
|
${LB_ROOT_COMMAND} umount -f chroot/dev.tmp/pts > /dev/null 2>&1 || true
|
2008-09-07 13:30:30 +00:00
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
${LB_ROOT_COMMAND} rm -rf chroot chroot.tmp
|
2007-09-23 08:05:18 +00:00
|
|
|
|
|
|
|
rm -f .stage/chroot*
|
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--binary)
|
2010-09-07 13:11:20 +00:00
|
|
|
${LB_ROOT_COMMAND} umount -f binary.tmp > /dev/null 2>&1 || true
|
2007-09-23 08:05:18 +00:00
|
|
|
rm -rf binary.tmp binary.deb binary.udeb
|
2010-02-18 15:34:29 -01:00
|
|
|
rm -f binary*.iso
|
2009-02-25 07:51:28 -01:00
|
|
|
rm -f binary*.img
|
2007-09-23 08:05:18 +00:00
|
|
|
rm -f binary*.tar.gz
|
|
|
|
rm -f binary.sh
|
2008-07-13 01:43:58 +00:00
|
|
|
rm -f binary.list binary.packages md5sum.txt
|
2007-09-23 08:05:18 +00:00
|
|
|
|
|
|
|
rm -rf binary
|
|
|
|
rm -rf tftpboot
|
|
|
|
|
|
|
|
rm -f .stage/binary*
|
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--remove)
|
2010-09-26 10:38:38 +00:00
|
|
|
LH=1 "${0}" --all
|
2007-11-13 11:08:51 -01:00
|
|
|
rm -rf cache/packages_*
|
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--purge)
|
2010-09-26 10:38:38 +00:00
|
|
|
LH=1 "${0}" --all
|
|
|
|
LH=1 "${0}" --cache
|
2009-07-31 20:01:27 +00:00
|
|
|
|
2010-01-11 21:58:54 -01:00
|
|
|
if [ -e auto/config ]
|
2009-07-31 20:01:27 +00:00
|
|
|
then
|
|
|
|
rm -f .stage/config
|
|
|
|
fi
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--stage)
|
2007-09-23 08:05:18 +00:00
|
|
|
rm -rf .stage
|
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--source)
|
2010-02-18 15:34:29 -01:00
|
|
|
rm -f source*.iso
|
2009-02-25 07:51:28 -01:00
|
|
|
rm -f source*.img
|
2007-09-23 08:05:18 +00:00
|
|
|
rm -f source*.tar
|
|
|
|
rm -f source*.tar.gz
|
2008-08-12 05:06:34 +00:00
|
|
|
rm -f source.list
|
2008-09-27 21:41:42 +00:00
|
|
|
rm -f source-selection.txt
|
2007-09-23 08:05:18 +00:00
|
|
|
|
|
|
|
rm -rf source
|
|
|
|
|
|
|
|
rm -f .stage/source*
|
|
|
|
;;
|
|
|
|
|
2008-01-14 23:05:51 -01:00
|
|
|
-h|--help)
|
|
|
|
Help
|
|
|
|
;;
|
|
|
|
|
2008-01-14 22:43:51 -01:00
|
|
|
-u|--usage)
|
|
|
|
Usage
|
|
|
|
;;
|
|
|
|
|
2008-01-14 23:05:51 -01:00
|
|
|
-v|--version)
|
|
|
|
Version
|
|
|
|
;;
|
|
|
|
|
2007-09-23 08:05:18 +00:00
|
|
|
*)
|
2008-01-14 22:43:51 -01:00
|
|
|
Usage
|
|
|
|
exit 1
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|