2007-09-23 08:04:46 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# lh_clean(1) - clean up system build directories
|
2007-09-23 08:04:48 +00:00
|
|
|
# Copyright (C) 2006-2007 Daniel Baumann <daniel@debian.org>
|
|
|
|
#
|
|
|
|
# live-helper 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
|
|
|
|
|
2007-09-23 08:05:11 +00:00
|
|
|
# Including common functions
|
|
|
|
LH_BASE="${LH_BASE:-/usr/share/live-helper}"
|
|
|
|
|
|
|
|
for FUNCTION in "${LH_BASE}"/functions/*.sh
|
2007-09-23 08:04:46 +00:00
|
|
|
do
|
2007-09-23 08:05:11 +00:00
|
|
|
. "${FUNCTION}"
|
2007-09-23 08:04:46 +00:00
|
|
|
done
|
|
|
|
|
2007-09-23 08:05:11 +00:00
|
|
|
# Setting static variables
|
2007-09-23 08:04:48 +00:00
|
|
|
DESCRIPTION="clean up system build directories"
|
|
|
|
HELP=""
|
2007-09-23 08:05:12 +00:00
|
|
|
USAGE="${PROGRAM} [all|cache|chroot|binary|purge|stage|source]"
|
2007-09-23 08:04:48 +00:00
|
|
|
|
|
|
|
Arguments "${@}"
|
|
|
|
|
2007-09-23 08:04:46 +00:00
|
|
|
# Reading configuration files
|
2007-09-23 08:04:52 +00:00
|
|
|
Read_conffile config/common
|
2007-09-23 08:04:49 +00:00
|
|
|
Read_conffile config/bootstrap
|
|
|
|
Read_conffile config/chroot
|
2007-09-23 08:04:52 +00:00
|
|
|
Read_conffile config/binary
|
|
|
|
Read_conffile config/source
|
2007-09-23 08:05:18 +00:00
|
|
|
Read_conffile "${LH_CONFIG}"
|
2007-09-23 08:04:46 +00:00
|
|
|
Set_defaults
|
|
|
|
|
2007-09-23 08:05:12 +00:00
|
|
|
rm -f .lock
|
|
|
|
|
2007-09-23 11:59:18 +00:00
|
|
|
if [ -z "${@}" ]
|
|
|
|
then
|
|
|
|
ARGUMENTS="all"
|
|
|
|
else
|
|
|
|
ARGUMENTS="${@}"
|
|
|
|
fi
|
|
|
|
|
2007-11-12 20:31:06 -01:00
|
|
|
# Avoid cases were users accidentally nuke their config/binary
|
|
|
|
if [ ! -d config ] || [ "$(basename ${PWD})" = "config" ]
|
|
|
|
then
|
|
|
|
Echo_error "${PWD} is not a good Debian Live working directory to clean."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2007-09-23 11:59:18 +00:00
|
|
|
for ARGUMENT in ${ARGUMENTS}
|
2007-09-23 08:05:18 +00:00
|
|
|
do
|
|
|
|
case "${ARGUMENT}" in
|
|
|
|
all)
|
|
|
|
"${0}" chroot
|
|
|
|
"${0}" binary
|
|
|
|
"${0}" stage
|
|
|
|
"${0}" source
|
|
|
|
;;
|
|
|
|
|
|
|
|
cache)
|
|
|
|
${LH_ROOT_COMMAND} rm -rf cache
|
|
|
|
;;
|
|
|
|
|
|
|
|
chroot)
|
|
|
|
Echo_message "Cleaning chroot"
|
|
|
|
${LH_ROOT_COMMAND} umount -f chroot/sys > /dev/null 2>&1 || true
|
|
|
|
${LH_ROOT_COMMAND} umount -f chroot/proc/sys/fs/binfmt_misc > /dev/null 2>&1 || true
|
|
|
|
${LH_ROOT_COMMAND} umount -f chroot/proc > /dev/null 2>&1 || true
|
|
|
|
${LH_ROOT_COMMAND} umount -f chroot/lib/init/rw > /dev/null 2>&1 || true
|
|
|
|
${LH_ROOT_COMMAND} umount -f chroot/dev/shm > /dev/null 2>&1 || true
|
|
|
|
${LH_ROOT_COMMAND} umount -f chroot/dev/pts > /dev/null 2>&1 || true
|
|
|
|
${LH_ROOT_COMMAND} umount -f chroot/dev > /dev/null 2>&1 || true
|
|
|
|
|
|
|
|
${LH_ROOT_COMMAND} rm -rf chroot chroot.tmp
|
|
|
|
|
|
|
|
rm -f .stage/chroot*
|
|
|
|
;;
|
|
|
|
|
|
|
|
binary)
|
|
|
|
${LH_ROOT_COMMAND} umount -f binary.tmp > /dev/null 2>&1 || true
|
|
|
|
rm -rf binary.tmp binary.deb binary.udeb
|
|
|
|
rm -f binary.iso
|
|
|
|
rm -f binary.img
|
|
|
|
rm -f binary*.tar.gz
|
|
|
|
rm -f binary.sh
|
|
|
|
|
|
|
|
rm -rf binary
|
|
|
|
rm -rf tftpboot
|
|
|
|
|
|
|
|
rm -f .stage/binary*
|
|
|
|
;;
|
|
|
|
|
|
|
|
purge)
|
2007-09-23 08:05:21 +00:00
|
|
|
"${0}" all
|
2007-09-23 08:05:18 +00:00
|
|
|
"${0}" cache
|
|
|
|
;;
|
|
|
|
|
|
|
|
stage)
|
|
|
|
rm -rf .stage
|
|
|
|
;;
|
|
|
|
|
|
|
|
source)
|
|
|
|
rm -f source.iso
|
|
|
|
rm -f source.img
|
|
|
|
rm -f source*.tar
|
|
|
|
rm -f source*.tar.gz
|
|
|
|
|
|
|
|
rm -rf source
|
|
|
|
|
|
|
|
rm -f .stage/source*
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
2007-09-23 11:59:18 +00:00
|
|
|
"${0}" --usage
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|