Initial commit

This commit is contained in:
2022-03-16 16:23:29 +01:00
commit 92817e8d97
6 changed files with 76 additions and 0 deletions

13
mounts.conf.template Normal file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env bash
# Copy this file as mounts.conf, and add your volumes.
declare -A mount1
mount1[mapper]='' # As in /dev/mapper/<?>
mount1[target]='' # Mount point (absolute path)
mount1[friendly]='' # Optional friendly name for unit file Description
mount1[autolock]=0 # Set to 1 to enable autolock
mounts=(
$mount1
#$mount2...
)