This repository has been archived on 2024-09-06. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
FreeBSD_mount_encimage/README.md
2016-07-30 20:27:08 +02:00

36 lines
867 B
Markdown

Mount_FreeBSD_encimg
--------------------
A small script utility to mount encrypted image disk in FreeBSD / FreeNAS then
execute desired services
this script is inspired by one you can find [here][L_nlsr]
# Customize
First you'll need to customize a little for your need, there 3 variables to
modify :
* IMAGE_DISK : full path to your disk image
* MOUNT_PATH : full path to your mount point
* SERVICES : services you want to start after mounting image.
# Example
I want to mount my image ``/data/backup_drive.img`` to ``/var/spool/burp/``
then start burp service. Here is all three variables :
~~~sh
DISK_IMAGE="/data/backup_drive.img"
MOUNT_POINT="/var/spool/burp/"
SERVICES="burp"
~~~
Then, i just need to launch the script then prey there is no bug ;-)
~~~
#mount.sh mount
~~~
done!
[L_nlsr]:http://www.nlrs.fr/2011/09/17/encrypted-share-geli/