2007-09-23 08:04:46 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2010-09-02 11:12:37 +00:00
|
|
|
## live-build(7) - System Build Scripts
|
2020-03-11 09:07:21 -01:00
|
|
|
## Copyright (C) 2016-2020 The Debian Live team
|
2015-01-04 18:05:39 -01:00
|
|
|
## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
|
2010-09-02 11:12:37 +00:00
|
|
|
##
|
2012-07-29 23:59:00 +00:00
|
|
|
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
|
2010-09-02 11:12:37 +00:00
|
|
|
## 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
|
2012-08-27 13:52:29 +00:00
|
|
|
[ -e "${LIVE_BUILD}/scripts/build.sh" ] && . "${LIVE_BUILD}/scripts/build.sh" || . /usr/lib/live/build.sh
|
2010-04-18 12:43:23 +00:00
|
|
|
|
2015-02-05 02:30:47 -01:00
|
|
|
# Redirecting to auto script if required
|
2020-02-22 01:46:28 -01:00
|
|
|
if [ "${1}" = "noauto" ]; then
|
2009-01-30 19:17:00 -01:00
|
|
|
shift
|
2020-02-22 01:46:28 -01:00
|
|
|
else
|
2020-04-28 14:12:17 +00:00
|
|
|
Maybe_auto_redirect clean "${@}"
|
2009-01-30 19:17:00 -01:00
|
|
|
fi
|
|
|
|
|
2007-09-23 08:05:11 +00:00
|
|
|
# Setting static variables
|
2015-02-05 02:30:47 -01:00
|
|
|
DESCRIPTION="Clean up system build directories"
|
2020-04-28 18:10:47 +00:00
|
|
|
USAGE="${PROGRAM} [--all] [--cache] [--chroot] [--binary] [--purge] [--remove] [--stage] [--source] [COMMON_OPTIONS]"
|
2007-09-23 08:04:48 +00:00
|
|
|
|
2020-05-04 12:10:42 +00:00
|
|
|
# Reading, preparing and validating config
|
|
|
|
Read_conffiles $(Common_conffiles)
|
|
|
|
Prepare_config
|
|
|
|
#Validate_config
|
2007-09-23 08:04:48 +00:00
|
|
|
|
2015-02-05 02:30:47 -01:00
|
|
|
# Avoiding 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
|
2013-03-11 04:35:40 -01:00
|
|
|
Echo_error "%s is not a good live-build working directory to clean." "${PWD}"
|
2007-11-18 14:15:43 -01:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2015-02-05 02:30:47 -01:00
|
|
|
Remove_lockfile
|
2007-09-23 08:05:12 +00:00
|
|
|
|
2020-04-28 18:10:47 +00:00
|
|
|
ACTION_SELECTED="false"
|
2007-09-23 11:59:18 +00:00
|
|
|
|
2020-04-28 15:23:26 +00:00
|
|
|
for ARGUMENT in "${@}"; do
|
2020-04-28 18:10:47 +00:00
|
|
|
IS_ACTION="true"
|
2007-09-23 08:05:18 +00:00
|
|
|
case "${ARGUMENT}" in
|
2007-11-18 14:14:50 -01:00
|
|
|
--all)
|
2020-04-28 18:41:45 +00:00
|
|
|
RM_ALL="true"
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--cache)
|
2020-04-28 18:41:45 +00:00
|
|
|
RM_CACHE="true"
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--chroot)
|
2020-04-28 18:41:45 +00:00
|
|
|
RM_CHROOT="true"
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--binary)
|
2020-04-28 18:41:45 +00:00
|
|
|
RM_BINARY="true"
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--remove)
|
2020-04-28 18:41:45 +00:00
|
|
|
RM_REMOVE="true"
|
2007-11-13 11:08:51 -01:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--purge)
|
2020-04-28 18:41:45 +00:00
|
|
|
RM_PURGE="true"
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--stage)
|
2020-04-28 18:41:45 +00:00
|
|
|
RM_STAGE="true"
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--source)
|
2020-04-28 18:41:45 +00:00
|
|
|
RM_SOURCE="true"
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2020-04-28 18:10:47 +00:00
|
|
|
*)
|
|
|
|
IS_ACTION="false"
|
2008-01-14 22:43:51 -01:00
|
|
|
;;
|
2020-04-28 18:10:47 +00:00
|
|
|
esac
|
|
|
|
if [ "${IS_ACTION}" = "true" ]; then
|
|
|
|
ACTION_SELECTED="true"
|
|
|
|
continue
|
|
|
|
fi
|
2008-01-14 22:43:51 -01:00
|
|
|
|
2020-04-28 18:10:47 +00:00
|
|
|
case "${ARGUMENT}" in
|
|
|
|
--breakpoints|--color|--debug|--force|-h|--help|--no-color|--quiet|-u|--usage|--verbose|-v|--version)
|
|
|
|
Handle_common_option "${ARGUMENT}"
|
|
|
|
shift
|
2008-01-14 23:05:51 -01:00
|
|
|
;;
|
|
|
|
|
2007-09-23 08:05:18 +00:00
|
|
|
*)
|
2020-05-02 17:44:03 +00:00
|
|
|
Echo_error "invalid arguments"
|
2020-04-23 14:38:59 +00:00
|
|
|
Usage --fail
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2020-04-28 18:10:47 +00:00
|
|
|
if [ "${ACTION_SELECTED}" = "false" ]; then
|
|
|
|
RM_ALL="true"
|
|
|
|
fi
|
2020-04-28 18:41:45 +00:00
|
|
|
|
|
|
|
STAGEFILES_DIR="$(Stagefiles_dir)"
|
|
|
|
|
|
|
|
if [ "${RM_PURGE}" = "true" ]; then
|
|
|
|
Echo_debug "Initialising --purge cleaning"
|
|
|
|
RM_ALL="true"
|
|
|
|
RM_CACHE="true"
|
|
|
|
# Clear config stagefile
|
|
|
|
if [ -e auto/config ]; then
|
|
|
|
Remove_stagefile config
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${RM_REMOVE}" = "true" ]; then
|
|
|
|
Echo_debug "Initialising --remove cleaning"
|
|
|
|
RM_ALL="true"
|
|
|
|
rm -rf cache/packages.*
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${RM_ALL}" = "true" ]; then
|
|
|
|
Echo_debug "Initialising --all cleaning"
|
|
|
|
RM_STAGE="true"
|
|
|
|
RM_CHROOT="true"
|
|
|
|
RM_BINARY="true"
|
|
|
|
RM_SOURCE="true"
|
|
|
|
rmdir --ignore-fail-on-non-empty auto > /dev/null 2>&1 || true
|
|
|
|
rmdir --ignore-fail-on-non-empty local/bin > /dev/null 2>&1 || true
|
|
|
|
rmdir --ignore-fail-on-non-empty local > /dev/null 2>&1 || true
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${RM_STAGE}" = "true" ]; then
|
|
|
|
Echo_debug "Cleaning stage files"
|
|
|
|
rm -rf "${STAGEFILES_DIR}"/*
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${RM_CACHE}" = "true" ]; then
|
|
|
|
Echo_debug "Cleaning cache"
|
|
|
|
rm -rf cache
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${RM_CHROOT}" = "true" ]; then
|
|
|
|
# This one is not debug because it can potentially take some time
|
|
|
|
Echo_message "Cleaning chroot"
|
|
|
|
umount -f chroot/run > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/sys > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/proc/sys/fs/binfmt_misc > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/proc > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/lib/init/rw > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/dev/shm > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/dev/pts > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/dev > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/var/lib/dpkg > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/root/config > /dev/null 2>&1 || true
|
|
|
|
|
|
|
|
umount -f chroot/binary.tmp > /dev/null 2>&1 || true
|
|
|
|
umount -f chroot/dev.tmp/pts > /dev/null 2>&1 || true
|
|
|
|
|
|
|
|
rm -rf chroot chroot.tmp
|
|
|
|
|
|
|
|
rm -f chroot.packages.live chroot.packages.install
|
|
|
|
rm -f chroot.files
|
|
|
|
|
|
|
|
rm -f "$(Installed_tmp_packages_file)"
|
|
|
|
|
|
|
|
rm -f "${STAGEFILES_DIR}"/chroot*
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${RM_BINARY}" = "true" ]; then
|
|
|
|
Echo_debug "Cleaning binary"
|
|
|
|
umount -f binary.tmp > /dev/null 2>&1 || true
|
|
|
|
rm -rf binary.tmp binary.deb binary.udeb
|
|
|
|
rm -f ${LB_IMAGE_NAME}*.iso
|
|
|
|
rm -f ${LB_IMAGE_NAME}*.img
|
|
|
|
rm -f ${LB_IMAGE_NAME}*.tar.gz
|
|
|
|
rm -f ${LB_IMAGE_NAME}*.zsync*
|
|
|
|
rm -f ${LB_IMAGE_NAME}.sh
|
|
|
|
rm -f ${LB_IMAGE_NAME}*.contents ${LB_IMAGE_NAME}*.packages ${LB_IMAGE_NAME}*.files
|
|
|
|
rm -f ${LB_IMAGE_NAME}*.iso-ONIE.bin
|
|
|
|
rm -f MD5SUMS SHA1SUMS SHA256SUMS SHA512SUMS
|
|
|
|
rm -f md5sum.txt sha1sum.txt sha256sum.txt sha512sum.txt
|
2021-01-02 15:41:50 -01:00
|
|
|
rm -f binary.modified_timestamps
|
2020-04-28 18:41:45 +00:00
|
|
|
|
|
|
|
rm -rf binary
|
|
|
|
rm -rf tftpboot
|
|
|
|
|
|
|
|
rm -f "${STAGEFILES_DIR}"/binary*
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${RM_SOURCE}" = "true" ]; then
|
|
|
|
Echo_debug "Cleaning source"
|
|
|
|
rm -f ${LB_IMAGE_NAME}-source*.iso
|
|
|
|
rm -f ${LB_IMAGE_NAME}-source*.img
|
|
|
|
rm -f ${LB_IMAGE_NAME}-source*.tar
|
|
|
|
rm -f ${LB_IMAGE_NAME}-source*.tar.gz
|
|
|
|
rm -f ${LB_IMAGE_NAME}-source*.list
|
|
|
|
rm -f ${LB_IMAGE_NAME}-source-selection.txt
|
|
|
|
|
|
|
|
rm -rf source
|
|
|
|
|
|
|
|
rm -f "${STAGEFILES_DIR}"/source*
|
|
|
|
fi
|