blob: d148debdec1c28fa557afd1719791a5f2a8e0f25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/sh
set -e
case "$1" in
remove)
if [ -L /usr/doc/util-linux-locales ] ; then
rm -f /usr/doc/util-linux-locales
fi
;;
upgrade|failed-upgrade|deconfigure)
;;
esac
#DEBHELPER#
|