78a903b1f7
- New refactor allow qubuntu to share most of Debian's codebase - Installation now more closely mimiks Debian's installation methods - Added a shared functions lib named distributions.sh - Any portions of Whonix that may need to be updatable have been moved to a new package named qubes-whonix which will be updatable via Debian package manager. qubes-whonix is also added as part of installation process
28 lines
1.2 KiB
Bash
Executable File
28 lines
1.2 KiB
Bash
Executable File
#!/bin/bash -e
|
|
# vim: set ts=4 sw=4 sts=4 et :
|
|
|
|
source "${SCRIPTSDIR}/vars.sh"
|
|
source "${SCRIPTSDIR}/distribution.sh"
|
|
|
|
##### '=========================================================================
|
|
debug ' Cleaning up...'
|
|
##### '=========================================================================
|
|
|
|
# ==============================================================================
|
|
# Execute any template flavor or sub flavor 'pre' scripts
|
|
# ==============================================================================
|
|
buildStep "${0}" "pre"
|
|
|
|
#### '-------------------------------------------------------------------------
|
|
info ' Cleaning up any left over files from installation'
|
|
#### '-------------------------------------------------------------------------
|
|
rm -rf "${INSTALLDIR}/var/cache/apt/archives/*"
|
|
rm -f "${INSTALLDIR}/etc/apt/sources.list.d/qubes-builder.list"
|
|
rm -f "${INSTALLDIR}/etc/apt/trusted.gpg.d/qubes-builder.gpg"
|
|
rm -rf "${INSTALLDIR}/${TMPDIR}"
|
|
|
|
# ==============================================================================
|
|
# Execute any template flavor or sub flavor 'post' scripts
|
|
# ==============================================================================
|
|
buildStep "${0}" "post"
|