Author: jfrederic.clere(a)jboss.com
Date: 2010-07-28 03:35:10 -0400 (Wed, 28 Jul 2010)
New Revision: 2692
Modified:
trunk/build/unix/buildbin.mod_cluster.sh
Log:
Don't add the conf for 1.0.x
Modified: trunk/build/unix/buildbin.mod_cluster.sh
===================================================================
--- trunk/build/unix/buildbin.mod_cluster.sh 2010-07-27 13:21:23 UTC (rev 2691)
+++ trunk/build/unix/buildbin.mod_cluster.sh 2010-07-28 07:35:10 UTC (rev 2692)
@@ -226,7 +226,11 @@
fi
# Add default mod_cluster conf in httpd.conf
-cat >> "${RPM_BUILD_ROOT}/opt/jboss/httpd/httpd/conf/httpd.conf"
<<EOF
+case $build_version in
+ 1.0.*)
+ ;;
+ 1.1.*)
+ cat >> "${RPM_BUILD_ROOT}/opt/jboss/httpd/httpd/conf/httpd.conf"
<<EOF
# MOD_CLUSTER_ADDS
# Adjust to you hostname and subnet.
<IfModule manager_module>
@@ -256,6 +260,8 @@
</VirtualHost>
</IfModule>
EOF
+ ;;
+esac
# Copy the install_home scripts
BASEHTTPD=/opt/jboss/httpd/
Show replies by date