75 lines
1.9 KiB
Text
75 lines
1.9 KiB
Text
[Main]
|
|
|
|
# comma separated list of possible prefixes for accesible devices
|
|
# beware: .e.g "/dev/hd" grants access to _all_ harddisks
|
|
AllowedDevices = /dev/loop
|
|
|
|
# the default prefix of not yet named containers
|
|
|
|
DefaultVolumePrefix = "Data "
|
|
|
|
# where should we put the local configuration and the mountpoints?
|
|
# this directory must be accessible by the cryptobox user (see below)
|
|
#DataDir = /var/cache/cryptobox
|
|
DataDir = .
|
|
|
|
# the name-database file - inside of DataDir
|
|
NameDatabase = cryptobox_names.db
|
|
|
|
|
|
[System]
|
|
# most actions of the cryptobox are not executed as root - choose a limited
|
|
# user and group here - for now only numeric ids are allowed
|
|
User = 1000
|
|
Group = 1000
|
|
|
|
# where should we mount volumes?
|
|
# this directory must be writeable by the cryptobox user (see above)
|
|
MountParentDir = /var/cache/cryptobox/mnt
|
|
|
|
# which cipher should cryptsetup-luks use?
|
|
DefaultCipher = aes-cbc-essiv:sha256
|
|
|
|
|
|
[Log]
|
|
# possible values are "debug", "info", "warn" and "error" or numbers from
|
|
# 0 (debug) to 9 (error)
|
|
Level = debug
|
|
|
|
# where to write the log messages to?
|
|
# possible values are: file
|
|
# syslog support will be added later
|
|
Destination = file
|
|
|
|
# depending on the choosen destination (see above) you may select
|
|
# details. Possible values for the different destinations are:
|
|
# file: $FILENAME
|
|
# syslog: $LOG_FACILITY
|
|
#Details = /var/log/cryptobox.log
|
|
Details = ./cryptobox.log
|
|
|
|
[Settings]
|
|
#default stylesheet
|
|
Stylesheet = cryptobox.css
|
|
#where are the clearsilver templates?
|
|
TemplateDir = ../templates
|
|
#path to language files
|
|
LangDir = ../lang
|
|
#default language
|
|
Language = de
|
|
#path to documentation files
|
|
DocDir = ../doc/html
|
|
#default language for documentation
|
|
DocLang = de
|
|
|
|
[Programs]
|
|
cryptsetup = /sbin/cryptsetup
|
|
mkfs-data = /sbin/mkfs.ext3
|
|
mkfs-config = /sbin/mkfs.ext2
|
|
blkid = /sbin/blkid
|
|
mount = /bin/mount
|
|
umount = /bin/umount
|
|
super = /usr/bin/super
|
|
# this is the "program" name as defined in the /etc/super.tab
|
|
CryptoBoxRootActions = CryptoBoxRootActions
|
|
|