From 53f68419ad51518aaadf0e57641ec10357ac5f80 Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Fri, 29 Feb 2008 17:38:32 +0000 Subject: install anarcats backupninja module changes --- templates/labelmount.handler | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 templates/labelmount.handler (limited to 'templates/labelmount.handler') diff --git a/templates/labelmount.handler b/templates/labelmount.handler new file mode 100644 index 0000000..22090bd --- /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" -- cgit v1.2.3