summaryrefslogtreecommitdiff
path: root/templates/umount.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/umount.handler
Squashed 'puppet/modules/backupninja/' content from commit 5268a87
git-subtree-dir: puppet/modules/backupninja git-subtree-split: 5268a87c329f895017f8ea6c6abc377a4f9a6a77
Diffstat (limited to 'templates/umount.handler')
-rw-r--r--templates/umount.handler15
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/umount.handler b/templates/umount.handler
new file mode 100644
index 00000000..4fea195a
--- /dev/null
+++ b/templates/umount.handler
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+# Unmount the specified directory ('dir'), forcefully if necessary.
+
+getconf dir
+
+if ! umount $dir; then
+ warning "Simple unmount failed for $dir; being forceful"
+ if ! umount -f $dir; then
+ warning "Forceful unmount failed for $dir; being lazy"
+ if ! umount -l $dir; then
+ warning "Lazy unmount failed for $dir; you're on your own"
+ fi
+ fi
+fi