summaryrefslogtreecommitdiff
path: root/templates/labelmount.handler
diff options
context:
space:
mode:
authorMicah <micah@leap.se>2016-05-24 10:19:40 -0400
committerMicah <micah@leap.se>2016-05-24 10:19:40 -0400
commite1ddddf2a0f81cdab84deeecec3e068d333b6ce8 (patch)
tree7592ee5d07f5d0e93a40d0432d6a195ecc9ccd0d /templates/labelmount.handler
Squashed 'puppet/modules/backupninja/' content from commit 5268a87
git-subtree-dir: puppet/modules/backupninja git-subtree-split: 5268a87c329f895017f8ea6c6abc377a4f9a6a77
Diffstat (limited to 'templates/labelmount.handler')
-rw-r--r--templates/labelmount.handler17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/labelmount.handler b/templates/labelmount.handler
new file mode 100644
index 00000000..22090bd4
--- /dev/null
+++ b/templates/labelmount.handler
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+# Mount a block device with the specified label ('label') onto the given
+# directory ('dest').
+
+getconf label
+getconf dest
+
+if [ ! -b "/dev/disk/by-label/$label" ]; then
+ halt "No partition labelled '$label' is available"
+fi
+
+if [ ! -d "$dest" ]; then
+ halt "Destination directory does not exist"
+fi
+
+mount -t auto /dev/disk/by-label/$label $dest || halt "Mount failed"