diff options
Diffstat (limited to 'debian/romtal-sistem-dondurma.postrm')
-rw-r--r-- | debian/romtal-sistem-dondurma.postrm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/debian/romtal-sistem-dondurma.postrm b/debian/romtal-sistem-dondurma.postrm new file mode 100644 index 0000000..7dddc1d --- /dev/null +++ b/debian/romtal-sistem-dondurma.postrm @@ -0,0 +1,14 @@ +#!/bin/sh +set -e + +case "$1" in + remove|purge) + dpkg-trigger update-initramfs;; + *) exit 0;; +esac + +#DEBHELPER# +exit 0 + +# vi: ts=4 noexpandtab + |