50 lines
1.3 KiB
Text
50 lines
1.3 KiB
Text
# some local settings for cbox-build.sh and validate.sh
|
|
#
|
|
# previously defined settings:
|
|
# - ROOT_DIR
|
|
#
|
|
|
|
|
|
####################### cbox-build ########################
|
|
|
|
# the build directory (will be ERASED without warning)
|
|
BUILD_DIR="$ROOT_DIR/_builddir"
|
|
|
|
# the cryptobox development files
|
|
TEMPLATE_DIR="$ROOT_DIR/cbox-tree.d"
|
|
|
|
# the iso image
|
|
IMAGE_FILE="$BUILD_DIR/cryptobox.iso"
|
|
|
|
# temporary directory
|
|
TMP_DIR="/tmp/`basename $0`-$$"
|
|
|
|
# the virtual harddisk image used for qemu
|
|
HD_IMAGE="/tmp/`basename $0`-testplatte.img"
|
|
|
|
# mkisofs options (the option "-U" is not clean, but it prevents long
|
|
# filenames from getting mapped)
|
|
MKISOFS_OPTIONS="-allow-multidot -U -D -iso-level 3 -b boot/grub/stage2_eltorito -no-emul-boot -boot-load-size 1 -boot-info-table -pad -R"
|
|
|
|
# for burning a CD
|
|
CDWRITER="2,0,0"
|
|
|
|
|
|
####################### validation ########################
|
|
|
|
# language of validation (select web interface language)
|
|
VALIDATE_LANGUAGE=en
|
|
|
|
# directory of the test-cases
|
|
VALIDATE_TEST_CASES_DIR=$ROOT_DIR/validation/test-cases
|
|
|
|
# override these settings if the CryptoBox uses a non-default IP
|
|
VALIDATE_HOST_IP_DEFAULT=192.168.0.23
|
|
VALIDATE_HOST_IP_CHANGED=192.168.0.24
|
|
|
|
# destination directories for the results
|
|
VALIDATE_REPORT_DIR=/tmp/cryptobox-validation-$$
|
|
VALIDATE_REPORT_DIR=$ROOT_DIR/validation/report
|
|
VALIDATE_SUMMARY_TEMPLATE_DIR=$ROOT_DIR/validation/templates
|
|
|
|
|