diff options
author | Rob Austein <sra@hactrn.net> | 2016-03-24 06:59:58 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-03-24 06:59:58 +0000 |
commit | 156c2355f03fd4d520790a321306d9b60a958fe1 (patch) | |
tree | 03722a648cc95371224e9ff01788f051b6edb38e | |
parent | 7ae30a179529efbe6d7895104caa7d457ebe4c83 (diff) |
Use undocumented -f option to a2dismod when disabling mod_deflate to
stop recent Debian and Ubuntu from whining at the user on
installation.
svn path=/branches/tk705/; revision=6327
-rwxr-xr-x | ca/rpkigui-apache-conf-gen | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ca/rpkigui-apache-conf-gen b/ca/rpkigui-apache-conf-gen index 71bdd8c7..4e17a9d7 100755 --- a/ca/rpkigui-apache-conf-gen +++ b/ca/rpkigui-apache-conf-gen @@ -486,7 +486,7 @@ class Debian(Platform): # # In light of BREACH and CRIME attacks, mod_deflate is looking # like a bad idea, so make sure it's off. - self.run("a2dismod", "deflate") + self.run("a2dismod", "-f", "deflate") def disable(self): self.run("a2dissite", "rpki") |