Files
WatermelonModders fc5cb0c32c Initial commit
2022-05-31 12:35:46 -04:00

29 lines
353 B
Bash

#!/bin/sh
case "$1" in
remove|purge|abort-install|abort-upgrade)
# This package is being removed, but its configuration has not yet
# been purged.
# shutdown service
service stud stop
;;
disappear)
;;
upgrade)
;;
failed-upgrade)
;;
*) echo "$0: didn't understand being called with \`$1'" 1>&2
exit 1;;
esac
exit 0
# EOF