"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7555/debian/jitsi-meet-turnserver.postrm" (28 Sep 2023, 1103 Bytes) of package /linux/misc/jitsi-meet-7555.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-turnserver
    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     purge)
   27         rm -rf /etc/turnserver.conf
   28         # Clear the debconf variable
   29         db_purge
   30     ;;
   31     remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
   32     ;;
   33 
   34     *)
   35         echo "postrm called with unknown argument \`$1'" >&2
   36         exit 1
   37     ;;
   38 esac
   39 
   40 # dh_installdeb will replace this with shell code automatically
   41 # generated by other debhelper scripts.
   42 
   43 #DEBHELPER#
   44 
   45 db_stop
   46 
   47 exit 0