From: Josh Stompro Date: Thu, 16 Apr 2015 19:55:25 +0000 (-0500) Subject: LP#1445187 - Force disable of deflate X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=3b68241e587f7d6c4c36e05b3fb52e1984df5a77;p=Evergreen.git LP#1445187 - Force disable of deflate Add the -f (force) flag to a2dismod to remove the chance of getting a confirmation prompt when removing deflate. Signed-off-by: Josh Stompro Signed-off-by: Ben Shum --- diff --git a/Open-ILS/src/extras/install/Makefile.debian b/Open-ILS/src/extras/install/Makefile.debian index 8f6c4994c2..4c0ee13364 100644 --- a/Open-ILS/src/extras/install/Makefile.debian +++ b/Open-ILS/src/extras/install/Makefile.debian @@ -45,7 +45,7 @@ debian_sys_config: # link the apache modules in for m in $(DEB_APACHE_MODS); do a2enmod $$m; done; # keep the bad apache modules away - for m in $(DEB_APACHE_DISMODS); do a2dismod $$m; done; + for m in $(DEB_APACHE_DISMODS); do a2dismod -f $$m; done; # keep the bad apache configs away for m in $(DEB_APACHE_DISCONF); do a2disconf $$m; done; # refresh the dynamic library cache