2006-08-17 12:38:05 +02:00
|
|
|
[Main]
|
|
|
|
|
|
|
|
# comma separated list of possible prefixes for accesible devices
|
|
|
|
# beware: .e.g "/dev/hd" grants access to _all_ harddisks
|
2006-10-26 14:30:44 +02:00
|
|
|
AllowedDevices = /dev/loop, /dev/ubdb
|
2006-08-17 12:38:05 +02:00
|
|
|
|
2006-09-20 12:40:37 +02:00
|
|
|
|
2006-08-27 10:38:48 +02:00
|
|
|
# the default name prefix of not unnamed containers
|
|
|
|
DefaultVolumePrefix = "Data "
|
2006-08-17 12:38:05 +02:00
|
|
|
|
2006-08-27 10:38:48 +02:00
|
|
|
# which cipher should cryptsetup-luks use?
|
2006-10-26 14:30:44 +02:00
|
|
|
#TODO: uml does not support this module - DefaultCipher = aes-cbc-essiv:sha256
|
|
|
|
DefaultCipher = aes-plain
|
2006-08-17 12:38:05 +02:00
|
|
|
|
2006-09-20 12:40:37 +02:00
|
|
|
# label of the configuration partition (you should never change this)
|
|
|
|
ConfigVolumeLabel = cbox_config
|
|
|
|
|
2006-08-17 12:38:05 +02:00
|
|
|
|
2006-08-27 10:38:48 +02:00
|
|
|
[Locations]
|
|
|
|
# where should we mount volumes?
|
|
|
|
# this directory must be writeable by the cryptobox user (see above)
|
|
|
|
MountParentDir = /var/cache/cryptobox/mnt
|
2006-08-17 12:38:05 +02:00
|
|
|
|
2006-10-11 17:51:28 +02:00
|
|
|
# settings directory: contains name database and plugin configuration
|
|
|
|
#SettingsDir = /var/cache/cryptobox/settings
|
|
|
|
SettingsDir = .
|
2006-08-17 12:38:05 +02:00
|
|
|
|
2006-08-27 10:38:48 +02:00
|
|
|
# where are the clearsilver templates?
|
|
|
|
#TemplateDir = /usr/share/cryptobox/templates
|
|
|
|
TemplateDir = ../templates
|
2006-08-17 12:38:05 +02:00
|
|
|
|
2006-08-27 10:38:48 +02:00
|
|
|
# path to language files
|
|
|
|
#LangDir = /usr/share/cryptobox/lang
|
|
|
|
LangDir = ../lang
|
2006-08-17 12:38:05 +02:00
|
|
|
|
2006-08-27 10:38:48 +02:00
|
|
|
# path to documentation files
|
|
|
|
#DocDir = /usr/share/doc/cryptobox/html
|
|
|
|
DocDir = ../doc/html
|
2006-08-17 12:38:05 +02:00
|
|
|
|
2006-09-12 10:55:20 +02:00
|
|
|
# path to the plugin directory
|
|
|
|
#PluginDir = /usr/share/cryptobox/plugins
|
|
|
|
PluginDir = ../plugins
|
|
|
|
|
|
|
|
|
2006-08-17 12:38:05 +02:00
|
|
|
|
|
|
|
[Log]
|
|
|
|
# possible values are "debug", "info", "warn" and "error" or numbers from
|
2006-08-27 10:38:48 +02:00
|
|
|
# 0 (debug) to 7 (error)
|
2006-08-17 12:38:05 +02:00
|
|
|
Level = debug
|
|
|
|
|
|
|
|
# where to write the log messages to?
|
|
|
|
# possible values are: file
|
|
|
|
# syslog support will be added later
|
2006-08-22 08:55:07 +02:00
|
|
|
Destination = file
|
2006-08-17 12:38:05 +02:00
|
|
|
|
2006-08-22 08:55:07 +02:00
|
|
|
# depending on the choosen destination (see above) you may select
|
|
|
|
# details. Possible values for the different destinations are:
|
2006-08-17 12:38:05 +02:00
|
|
|
# file: $FILENAME
|
|
|
|
# syslog: $LOG_FACILITY
|
2006-08-22 08:55:07 +02:00
|
|
|
#Details = /var/log/cryptobox.log
|
|
|
|
Details = ./cryptobox.log
|
2006-08-17 12:38:05 +02:00
|
|
|
|
2006-08-27 10:38:48 +02:00
|
|
|
|
|
|
|
[WebSettings]
|
|
|
|
# URL of default stylesheet
|
2006-09-05 17:03:16 +02:00
|
|
|
Stylesheet = /cryptobox-misc/cryptobox.css
|
2006-08-27 10:38:48 +02:00
|
|
|
|
|
|
|
# default language
|
2006-08-18 23:45:40 +02:00
|
|
|
Language = de
|
2006-08-27 10:38:48 +02:00
|
|
|
|
|
|
|
|
2006-08-21 09:41:03 +02:00
|
|
|
[Programs]
|
|
|
|
cryptsetup = /sbin/cryptsetup
|
|
|
|
mkfs-data = /sbin/mkfs.ext3
|
|
|
|
blkid = /sbin/blkid
|
2006-11-02 14:55:31 +01:00
|
|
|
blockdev = /sbin/blockdev
|
2006-08-21 09:41:03 +02:00
|
|
|
mount = /bin/mount
|
|
|
|
umount = /bin/umount
|
2006-08-23 15:27:25 +02:00
|
|
|
super = /usr/bin/super
|
2006-08-27 10:38:48 +02:00
|
|
|
# this is the "program" name as defined in /etc/super.tab
|
2006-08-23 15:27:25 +02:00
|
|
|
CryptoBoxRootActions = CryptoBoxRootActions
|
2006-08-21 09:41:03 +02:00
|
|
|
|