You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
344 B

  1. #!/bin/sh
  2. set -e
  3. case "$1" in
  4. purge)
  5. rm -f /etc/shadowsocks-libev/config.json
  6. test -f /etc/shadowsocks-libev/* \
  7. || rm -r /etc/shadowsocks-libev/
  8. ;;
  9. remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
  10. exit 0
  11. ;;
  12. *)
  13. echo "postrm called with unknown argument \`$1'" >&2
  14. exit 0
  15. ;;
  16. esac
  17. #DEBHELPER#
  18. exit 0