Skip to content
Snippets Groups Projects
Commit 6ecb738f authored by Thomas Bellman's avatar Thomas Bellman
Browse files

Dependency fix in apache::listen::no_global_listen.

We were missing a dependency on the httpd package being installed,
and could thus try to comment out Listen directive(s) in httpd.conf
before the file existed.  Fix this.
parent 19f70fb2
No related branches found
No related tags found
No related merge requests found
......@@ -50,6 +50,7 @@ class apache::listen::no_global_listen
'apache::listen::no_global_listen':
file => $apache::configfile,
pattern => '^\s*Listen(\s|$).*$',
comment => '##--';
comment => '##--',
require => Class[apache::base];
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment