From 936499737c85b069df06d35b9975bdf2c18950f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20M=E4kinen?= Date: Wed, 23 Jan 2013 11:12:05 +0200 Subject: [PATCH] Fixed operatingsystemrelease comparison from httpsd.conf. --- apache/templates/httpsd.conf.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apache/templates/httpsd.conf.erb b/apache/templates/httpsd.conf.erb index d6710fe..5b90945 100644 --- a/apache/templates/httpsd.conf.erb +++ b/apache/templates/httpsd.conf.erb @@ -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