blob: 783628259386fae5a851c3f58db9350be41d91bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
set -e
if [ "$1" = "install" ]; then
dpkg-divert --rename --package cryptsetup-nuke-password \
--divert /lib/cryptsetup/askpass.cryptsetup \
--add /lib/cryptsetup/askpass
fi
#DEBHELPER#
|