"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7328/debian/jitsi-meet-web-config.postrm" (8 Jun 2023, 2011 Bytes) of package /linux/misc/jitsi-meet-7328.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Bash source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 #!/bin/sh
    2 # postrm script for jitsi-meet-web-config
    3 #
    4 # see: dh_installdeb(1)
    5 
    6 set -e
    7 
    8 # summary of how this script can be called:
    9 #        * <postrm> `remove'
   10 #        * <postrm> `purge'
   11 #        * <old-postrm> `upgrade' <new-version>
   12 #        * <new-postrm> `failed-upgrade' <old-version>
   13 #        * <new-postrm> `abort-install'
   14 #        * <new-postrm> `abort-install' <old-version>
   15 #        * <new-postrm> `abort-upgrade' <old-version>
   16 #        * <disappearer's-postrm> `disappear' <overwriter>
   17 #          <overwriter-version>
   18 # for details, see http://www.debian.org/doc/debian-policy/ or
   19 # the debian-policy package
   20 
   21 # Load debconf
   22 . /usr/share/debconf/confmodule
   23 
   24 
   25 case "$1" in
   26     remove)
   27         if [ -x "/etc/init.d/openresty" ]; then
   28             invoke-rc.d openresty reload || true
   29         fi
   30         if [ -x "/etc/init.d/nginx" ]; then
   31             invoke-rc.d nginx reload || true
   32         fi
   33         if [ -x "/etc/init.d/apache2" ]; then
   34             invoke-rc.d apache2 reload || true
   35         fi
   36     ;;
   37     purge)
   38         db_get jitsi-meet/jvb-hostname
   39         JVB_HOSTNAME=$(echo "$RET" | xargs echo -n)
   40         if [ -n "$RET" ]; then
   41             rm -f /etc/jitsi/meet/$JVB_HOSTNAME-config.js
   42             rm -f /etc/nginx/sites-available/$JVB_HOSTNAME.conf
   43             rm -f /etc/nginx/sites-enabled/$JVB_HOSTNAME.conf
   44             rm -f /usr/local/openresty/nginx/conf/$JVB_HOSTNAME.conf
   45             rm -f /etc/apache2/sites-available/$JVB_HOSTNAME.conf
   46             rm -f /etc/apache2/sites-enabled/$JVB_HOSTNAME.conf
   47             rm -f /etc/jitsi/meet/$JVB_HOSTNAME.key
   48             rm -f /etc/jitsi/meet/$JVB_HOSTNAME.crt
   49         fi
   50         # Clear the debconf variable
   51         db_purge
   52     ;;
   53     upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
   54     ;;
   55 
   56     *)
   57         echo "postrm called with unknown argument \`$1'" >&2
   58         exit 1
   59     ;;
   60 esac
   61 
   62 # dh_installdeb will replace this with shell code automatically
   63 # generated by other debhelper scripts.
   64 
   65 #DEBHELPER#
   66 
   67 db_stop
   68 
   69 exit 0