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"
|
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
|
|
|
|
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 15:23:26 +00:00
|
|
|
if [ $# -eq 0 ]; then
|
|
|
|
set -- "--all"
|
2007-09-23 11:59:18 +00:00
|
|
|
fi
|
|
|
|
|
2020-05-02 13:49:45 +00:00
|
|
|
STAGEFILES_DIR="$(Stagefiles_dir)"
|
|
|
|
|
2020-04-28 15:23:26 +00:00
|
|
|
for ARGUMENT in "${@}"; do
|
2007-09-23 08:05:18 +00:00
|
|
|
case "${ARGUMENT}" in
|
2007-11-18 14:14:50 -01:00
|
|
|
--all)
|
2020-04-28 15:53:38 +00:00
|
|
|
Echo_debug "Running --all"
|
2012-08-27 13:16:09 +00:00
|
|
|
"${0}" noauto --chroot
|
|
|
|
"${0}" noauto --binary
|
|
|
|
"${0}" noauto --stage
|
|
|
|
"${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
|
2012-12-10 18:35:50 -01:00
|
|
|
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
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--cache)
|
2020-04-28 15:53:38 +00:00
|
|
|
Echo_debug "Cleaning cache"
|
2013-02-18 09:29:04 -01:00
|
|
|
rm -rf cache
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--chroot)
|
2020-04-28 15:53:38 +00:00
|
|
|
# This one is not debug because it can potentially take some time
|
2007-09-23 08:05:18 +00:00
|
|
|
Echo_message "Cleaning chroot"
|
2013-02-18 09:29:04 -01:00
|
|
|
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
|
2007-09-23 08:05:18 +00:00
|
|
|
|
2011-09-07 13:08:14 +00:00
|
|
|
rm -f chroot.packages.live chroot.packages.install
|
2013-05-06 10:33:07 +00:00
|
|
|
rm -f chroot.files
|
2011-09-07 13:08:14 +00:00
|
|
|
|
make temporary state of installed tools recoverable
some scripts temporarily install packages to accomplish some work before
then removing them. the list of packages installed is kept in memory in a
variable.
a weakness of this design is that if a failure occurs or the user cancels,
and then following this the user re-runs `lb build`, letting it try to
pick up and recover from where it left off, that list of packages that had
been installed is lost, resulting in those packages that were installed
then being a permanent part of the chroot.
here we fix this weakness by backing up the list to a file, which is always
read from on removal. thus in a recovery situation, any packages still
installed from a situation like that just described, will be removed upon
the next use of `Remove_package()`.
this is not perfect, since we are having to wait for opportunistic
execution of the remove function. we need to find a suitable place for the
`Cleanup_temp_packages()` function to be used.
- doing so in `Init_config_data()` would not be suitable because we don't
hold the lock when that's run, even if we ignored the hijacking of that
function for taking such action...
- doing it in `Exit()` doesn't seem a good fit either.
- putting it explicitly in every build script just seems a little messy...
perhaps a local exit trap like for removing the lock...?
note that `binary_rootfs` skips running the remove function after installing
tooling, since it just throws the wrapper chroot away, which then leaves the
file around with stale data for the next remove instance to pick up, which
then does not actually remove it because it's not installed. this is not
ideal either... perhaps the optimisation should be removed from that script?
Gbp-Dch: Short
2020-05-05 00:56:36 +00:00
|
|
|
rm -f "$(Installed_tmp_packages_file)"
|
|
|
|
|
2020-05-02 13:49:45 +00:00
|
|
|
rm -f "${STAGEFILES_DIR}"/chroot*
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--binary)
|
2020-04-28 15:53:38 +00:00
|
|
|
Echo_debug "Cleaning binary"
|
2013-02-18 09:29:04 -01:00
|
|
|
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
|
2020-04-06 17:43:41 +00:00
|
|
|
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
|
2013-01-02 09:27:05 -01:00
|
|
|
rm -f MD5SUMS SHA1SUMS SHA256SUMS SHA512SUMS
|
|
|
|
rm -f md5sum.txt sha1sum.txt sha256sum.txt sha512sum.txt
|
2007-09-23 08:05:18 +00:00
|
|
|
|
|
|
|
rm -rf binary
|
|
|
|
rm -rf tftpboot
|
|
|
|
|
2020-05-02 13:49:45 +00:00
|
|
|
rm -f "${STAGEFILES_DIR}"/binary*
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--remove)
|
2020-04-28 15:53:38 +00:00
|
|
|
Echo_debug "Running --remove"
|
2020-04-28 15:42:29 +00:00
|
|
|
"${0}" noauto --all
|
2012-06-04 08:52:28 +00:00
|
|
|
rm -rf cache/packages.*
|
2007-11-13 11:08:51 -01:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--purge)
|
2020-04-28 15:53:38 +00:00
|
|
|
Echo_debug "Running --purge"
|
2020-04-28 15:42:29 +00:00
|
|
|
"${0}" noauto --all
|
|
|
|
"${0}" noauto --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
|
2020-05-02 13:49:45 +00:00
|
|
|
Remove_stagefile config
|
2009-07-31 20:01:27 +00:00
|
|
|
fi
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--stage)
|
2020-04-28 15:53:38 +00:00
|
|
|
Echo_debug "Cleaning stage files"
|
2020-05-02 13:49:45 +00:00
|
|
|
rm -rf "${STAGEFILES_DIR}"/*
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2007-11-18 14:14:50 -01:00
|
|
|
--source)
|
2020-04-28 15:53:38 +00:00
|
|
|
Echo_debug "Cleaning source"
|
2020-04-06 17:43:41 +00:00
|
|
|
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
|
2007-09-23 08:05:18 +00:00
|
|
|
|
|
|
|
rm -rf source
|
|
|
|
|
2020-05-02 13:49:45 +00:00
|
|
|
rm -f "${STAGEFILES_DIR}"/source*
|
2007-09-23 08:05:18 +00:00
|
|
|
;;
|
|
|
|
|
2008-01-14 23:05:51 -01:00
|
|
|
-h|--help)
|
2020-04-24 14:39:10 +00:00
|
|
|
Man
|
2008-01-14 23:05:51 -01:00
|
|
|
;;
|
|
|
|
|
2008-01-14 22:43:51 -01:00
|
|
|
-u|--usage)
|
2020-04-23 14:38:59 +00:00
|
|
|
Usage --exit
|
2008-01-14 22:43:51 -01:00
|
|
|
;;
|
|
|
|
|
2008-01-14 23:05:51 -01:00
|
|
|
-v|--version)
|
2012-07-18 19:38:58 +00:00
|
|
|
echo "${VERSION}"
|
|
|
|
exit 0
|
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
|