postrm 203 B

1234567891011121314151617
  1. #!/bin/bash
  2. case $1 in
  3. remove)
  4. :
  5. /etc/init.d/gogs stop
  6. update-rc.d gogs disable
  7. ;;
  8. purge)
  9. :
  10. /etc/init.d/gogs stop
  11. update-rc.d gogs disable
  12. deluser git
  13. delgroup git
  14. rm -rf /opt/gogs
  15. ;;
  16. esac