VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Build/Packaging/debian-control/prerm
blob: d2e3894e1bf13ca7e5f46d4b257d2930d6e5fc59 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
V="$(mount | grep veracrypt_aux_mnt)"
if [ ! -z "$V" ]
then
	echo "Error: All VeraCrypt volumes must be dismounted first." >&2
	exit 1
else
	exit 0
fi