aboutsummaryrefslogtreecommitdiffstats
path: root/wire-desktop/umount-wire
diff options
context:
space:
mode:
Diffstat (limited to 'wire-desktop/umount-wire')
-rwxr-xr-xwire-desktop/umount-wire17
1 files changed, 17 insertions, 0 deletions
diff --git a/wire-desktop/umount-wire b/wire-desktop/umount-wire
new file mode 100755
index 0000000..0301326
--- /dev/null
+++ b/wire-desktop/umount-wire
@@ -0,0 +1,17 @@
+#!/bin/dash
+
+asroot env \
+ WIRE_DIR="${HOME}/.var/opt/wire" \
+ WIRE_DEV="$(losetup | sed 's/\s\+/ /g' | cut -d ' ' -f 1,6 | \
+ sed -n 's#\(/[^ ]*\) '"$(realpath -- "${HOME}/.var/opt/wire/WireCrypt.img")"'$#\1#p' | sed 1q)" \
+ sh -c '
+ if mountpoint -q -- "${WIRE_DIR}/WireCrypt.d"; then
+ umount -- "${WIRE_DIR}/WireCrypt.d"
+ fi
+ if test -e /dev/mapper/WireCrypt; then
+ cryptsetup close WireCrypt
+ fi
+ if test -n "${WIRE_DEV}"; then
+ losetup -d -- "${WIRE_DEV}"
+ fi
+ '