lars
77324ae946
fixed samba integration script added syslog support replaced 'pattern' with 'level' for 'logs' plugin improved fetch_po_files script improved output of log plugin recursively storing setting files fixed umask set to 022 defining bootup and shutdown handler for the server implementing volume_automount mounting simplified the output preperation of the partition plugin "busy" flag handling moved from core/container to core/main
30 lines
865 B
Text
30 lines
865 B
Text
Integration of samba into the CryptoBox
|
|
|
|
This file describes how to expose the volumes that are managed by the CryptoBox
|
|
through samba shares.
|
|
|
|
There are two different ways to do this:
|
|
|
|
|
|
A) one share for all volumes together
|
|
|
|
Just add the following lines to your /etc/samba/smb.conf:
|
|
[cryptobox]
|
|
path = /var/cache/cryptobox-server/mnt
|
|
browseable = yes
|
|
read only = no
|
|
guest ok = yes
|
|
|
|
Reload the new samba configuration by calling:
|
|
invoke-rc.d samba reload
|
|
|
|
|
|
B) one share for each volume
|
|
|
|
Copy the example event script /usr/share/doc/cryptobox-server/event-script/samba
|
|
to /etc/cryptobox-server/events.d/samba. This event handler will add and remove
|
|
shares whenever a volume is mounted or unmounted via the CryptoBox webinterface.
|
|
|
|
Add the following line to your /etc/samba/smb.conf:
|
|
include = /var/cache/cryptobox-server/settings/misc/samba-include.conf
|
|
|