Files
VeraCrypt/src/Build/Packaging/debian-control/prerm
T

9 lines
160 B
Bash
Executable File

#!/bin/sh
V="$(mount | grep veracrypt_aux_mnt)"
if [ ! -z "$V" ]
then
echo "Error: All VeraCrypt volumes must be unmounted first." >&2
exit 1
else
exit 0
fi