Fixed operatingsystemrelease comparison from httpsd.conf.
This commit is contained in:
parent
b10de9c0b2
commit
936499737c
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ MaxRequestsPerChild 0
|
|||
# Example:
|
||||
# LoadModule foo_module modules/mod_foo.so
|
||||
#
|
||||
<% if operatingsystem == 'Fedora' and operatingsystemrelease > 17 -%>
|
||||
<% if operatingsystem == 'Fedora' and operatingsystemrelease.to_i > 17 -%>
|
||||
Include conf.modules.d/*.conf
|
||||
<% else -%>
|
||||
LoadModule auth_basic_module modules/mod_auth_basic.so
|
||||
|
|
Loading…
Add table
Reference in a new issue