mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-18 07:37:48 +01:00
19 lines
239 B
Plaintext
19 lines
239 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
|
||
|
case "$1" in
|
||
|
purge|remove|disappear)
|
||
|
;;
|
||
|
|
||
|
upgrade|failed-upgrade|abort-install|abort-upgrade)
|
||
|
;;
|
||
|
*)
|
||
|
echo "postrm called with unknown argument \`$1'" >&2
|
||
|
exit 0
|
||
|
|
||
|
esac
|
||
|
|
||
|
exit 0
|