summaryrefslogtreecommitdiff
blob: bbf5a97d2b61736a4469330fea97ad0441d20eca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/sbin/openrc-run
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

depend() {
	after localmount
	need device-mapper
}

stop() {
	# Try to remove any dm-crypt mappings
	if [ -x /usr/bin/veracrypt ]; then
		ebegin "Removing veracrypt mappings"
		! /usr/bin/veracrypt -l > /dev/null 2>&1  || /usr/bin/veracrypt -d
		eend $?
	fi
}