blob: 1ae8a229a0f2ac4d3f52d4f7e73a1fd6db31984b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
set -e
case "$1" in
remove)
for file in cryptdisks_start cryptdisks_stop; do
if [ -L /usr/sbin/$file ]; then
rm /usr/sbin/$file
fi
done
;;
esac
#DEBHELPER#
|