mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2026-08-29 20:27:16 +00:00
9 lines
160 B
Bash
Executable File
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 |