19 lines
566 B
Bash
19 lines
566 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# ------------------------------------------------------------------------------
|
||
|
# Source external scripts
|
||
|
# ------------------------------------------------------------------------------
|
||
|
. ${SCRIPTSDIR}/vars.sh
|
||
|
. ./umount_kill.sh >/dev/null
|
||
|
|
||
|
# ------------------------------------------------------------------------------
|
||
|
# Configurations
|
||
|
# ------------------------------------------------------------------------------
|
||
|
if [ "${VERBOSE}" -ge 2 -o "${DEBUG}" == "1" ]; then
|
||
|
set -x
|
||
|
else
|
||
|
set -e
|
||
|
fi
|
||
|
|
||
|
rm -f "${INSTALLDIR}/etc/sudoers.d/whonix-build"
|