aboutsummaryrefslogtreecommitdiffstats
path: root/wire-desktop/umount-wire
blob: ce7f0c06480c147374fba78346d4d18c67ac506d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/dash

asroot=asroot
if ! isfg; then
	asroot=gasroot
fi

$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
	'