mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 12:40:35 +00:00
18 lines
234 B
Text
18 lines
234 B
Text
|
#!/bin/sh
|
||
|
|
||
|
case "$1" in
|
||
|
remove)
|
||
|
ldconfig
|
||
|
;;
|
||
|
purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
|
||
|
# nothing to do
|
||
|
;;
|
||
|
*)
|
||
|
echo "postrm called with unknown argument \`$1'" >&2
|
||
|
exit 0
|
||
|
esac
|
||
|
|
||
|
#DEBHELPER#
|
||
|
|
||
|
exit 0
|