cryptsetup/debian/cryptsetup-initramfs.postrm

14 lines
140 B
Bash

#! /bin/sh
set -e
case "$1" in
remove)
if which update-initramfs >/dev/null; then
update-initramfs -u
fi
;;
esac
#DEBHELPER#