26 lines
829 B
Bash
Executable file
26 lines
829 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# this script looks for the devel-features.sh script
|
|
# if it exists, it will be executed - this is
|
|
# ONLY FOR DEVELOPMENT CDs!
|
|
# for release CDs the file devel-features.sh script should never exist!
|
|
#
|
|
|
|
set -eu
|
|
|
|
# parse config file
|
|
. /etc/cryptobox/cryptobox.conf
|
|
|
|
# return, if it does not exist
|
|
[ ! -e "$DEV_FEATURES_SCRIPT" ] && exit 0
|
|
|
|
echo
|
|
echo "#---------------------------------------------------------------#"
|
|
echo "| WARNING: developers features are enabled |"
|
|
echo "| This definitely should NOT happen for production CDs! |"
|
|
echo "| If you are not a developer, then this CD is DANGEROUS, as it |"
|
|
echo "| offers no security at all! |"
|
|
echo "#---------------------------------------------------------------#"
|
|
echo
|
|
|
|
$DEV_FEATURES_SCRIPT "$@"
|