doc pages served by the CGI again (as until rev 164) URLs of images in stylesheet are absolute now moved 'partition_info' layout to stylesheet file CGI: file handling now done with perl instead of shell utilities CGI: removed warning for 'crypto not mounted' after 'poweroff' or 'reboot' CGI: warning, if unmount-crypto failed CGI: warning, if configuration of any value failed silently texts for 'ConfigTimeOutFailed', 'ConfigLanguageFailed' and 'ConfigIPFailed' added to language file cbox-manage.sh: syntax info updated cbox-manage.sh: action 'crypto-(u)mount' renamed to 'crypto-up/down'
46 lines
1.3 KiB
Text
46 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/cd1"
|
|
|
|
# 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 ########################
|
|
|
|
# directory of the test-cases
|
|
VALIDATE_TEST_CASES_DIR=$ROOT_DIR/validation/test-cases
|
|
|
|
# override these settings if the CryptoBox is not directly available
|
|
# in this case they should point to a redirecting router
|
|
VALIDATE_HOST_IP=192.168.0.23
|
|
VALIDATE_HTTP_PORT=80
|
|
VALIDATE_HTTPS_PORT=443
|
|
|
|
# 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
|
|
|
|
|