logo

widrop

[mirror] WiDrop distribution, now defunct git clone https://hacktivis.me/git/mirror/widrop.git

postrm (221B)


  1. #!/bin/sh
  2. case $1 in
  3. "remove")
  4. echo Removing lighttpd configuration for widrop
  5. [ -f /etc/lighttpd/conf-enabled/00-widrop.conf ] || (
  6. lighty-disable-mod widrop
  7. /etc/init.d/lighttpd force-reload
  8. )
  9. ;;
  10. esac
  11. exit 0