Fixed operatingsystemrelease comparison from httpsd.conf.

This commit is contained in:
Timo Mkinen 2013-01-23 11:12:05 +02:00
parent b10de9c0b2
commit 936499737c

View file

@ -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