remove.inc 356 B

12345678910111213
  1. #!/bin/bash
  2. hestia_package_web-server_remove() {
  3. echo "Removing web server package..."
  4. hestia module remove php-fpm --no-integrate
  5. hestia module remove nginx --no-integrate
  6. hestia module remove apache --no-integrate
  7. hestia module remove awstats --no-integrate
  8. # Integrate everything
  9. hestia package web-server integrate
  10. }