A little script to mount encrypted disk image created with mdconfig and geli.
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.
Find a file
2016-07-30 20:27:08 +02:00
mount.sh First commit 2016-07-30 20:27:08 +02:00
README.md First commit 2016-07-30 20:27:08 +02:00

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

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 :

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!