#!/bin/sh # postrm script for jitsi-meet-prosody # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `remove' # * `purge' # * `upgrade' # * `failed-upgrade' # * `abort-install' # * `abort-install' # * `abort-upgrade' # * `disappear' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package # Load debconf . /usr/share/debconf/confmodule case "$1" in remove) if [ -x "/etc/init.d/prosody" ]; then invoke-rc.d nginx reload fi ;; purge) db_get jitsi-meet-prosody/jvb-hostname JVB_HOSTNAME=$RET if [ -n "$RET" ]; then rm -f /etc/prosody/conf.avail/$JVB_HOSTNAME.cfg.lua rm -f /etc/prosody/conf.d/$JVB_HOSTNAME.cfg.lua fi ;; upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# db_stop exit 0