* fixes conffile variable
* removed ..Local because of super.tab
This commit is contained in:
parent
e57232efc9
commit
71276ae7fa
2 changed files with 3 additions and 2 deletions
|
@ -85,7 +85,7 @@ umount = /bin/umount
|
|||
nice = /usr/bin/nice
|
||||
super = /usr/bin/super
|
||||
# this is the "program" name as defined in /etc/super.tab
|
||||
CryptoBoxRootActions = CryptoBoxRootActionsLocal
|
||||
CryptoBoxRootActions = CryptoBoxRootActions
|
||||
|
||||
|
||||
[PluginSettings]
|
||||
|
|
|
@ -22,7 +22,8 @@ FALLBACK_CONF_FILE=$BIN_DIR/cryptobox.conf
|
|||
|
||||
## determine the configuration file
|
||||
CONFIG_FILE=$FALLBACK_CONF_FILE
|
||||
test -e "$PREFERRED_FILE" && CONFIG_FILE=$PREFERRED_CONF_FILE
|
||||
test -r "$PREFERRED_CONF_FILE" && CONFIG_FILE=$PREFERRED_CONF_FILE
|
||||
echo "used config: $CONFIG_FILE"
|
||||
|
||||
## create necessary directories
|
||||
mkdir -p "$BIN_DIR/../ttt/mnt"
|
||||
|
|
Loading…
Reference in a new issue