lars
3500b67a40
refresh link for logs feature change default setting of UseConfigPartition to "0" README file rewritten README.samba added README.davfs added README.Debian rewritten event scripts for samba and apach2_dav improved do not redirect to "disks overview" after successful plugin execution (e.g. date, ...) unclean web dataset fixed removed some non-translateable strings from po and pot files automatically update the cryptobox version according to the debian package version number
26 lines
969 B
Text
26 lines
969 B
Text
Event scripts for CryptoBox events
|
|
|
|
If you want to execute specific actions according to changes of the cryptobox,
|
|
then you can just add your own scripts to this directory.
|
|
For every supported event of the CryptoBox, all scripts are called with root user
|
|
permissions.
|
|
|
|
The common synopsis for all event scripts is:
|
|
SCRIPTNAME EVENT [[EVENT_INFOS]...]
|
|
|
|
Supported events:
|
|
premount|postmount|preumount|postumount:
|
|
called before and after (u)mounting of a volume
|
|
arguments (in this order):
|
|
- device: name of the underlying device
|
|
- vol_name: name of the (u)mounted volume
|
|
- vol_type: type of the volume (plain|luks)
|
|
- mount_dir: mountpoint of the volume
|
|
|
|
|
|
Every event script has to fulfill the following conditions:
|
|
- be executable (for the cryptobox user and for root)
|
|
- be writeable for root only
|
|
- its parent directories must be writeable for root only
|
|
- the directory of the script must contain a file called '_event_scripts_' (to prevent abuse)
|
|
|