Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

jitsi-meet-react.postrm 1.5KB

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