mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-02-16 03:56:47 +01:00
19 lines
239 B
Django/Jinja
19 lines
239 B
Django/Jinja
#!/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
|