You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by jf...@apache.org on 2015/02/03 17:44:04 UTC

svn commit: r1656792 - in /vcl/trunk: vcl-install.sh vcl-upgrade.sh

Author: jfthomps
Date: Tue Feb  3 16:44:04 2015
New Revision: 1656792

URL: http://svn.apache.org/r1656792
Log:
VCL-810 - 2.4 install script

removed php-process from list of installed/checked for php modules - it used to be needed for semaphore support but that has been replaced

Modified:
    vcl/trunk/vcl-install.sh
    vcl/trunk/vcl-upgrade.sh

Modified: vcl/trunk/vcl-install.sh
URL: http://svn.apache.org/viewvc/vcl/trunk/vcl-install.sh?rev=1656792&r1=1656791&r2=1656792&view=diff
==============================================================================
--- vcl/trunk/vcl-install.sh (original)
+++ vcl/trunk/vcl-install.sh Tue Feb  3 16:44:04 2015
@@ -538,7 +538,7 @@ fi
 if [[ $DOWEB -eq 1 ]]; then
 	print_break
 	echo "Installing httpd and php components..."
-	yum -q -y install httpd php mod_ssl php php-gd php-mysql php-xml php-xmlrpc php-ldap php-process sendmail php-mbstring
+	yum -q -y install httpd php mod_ssl php php-gd php-mysql php-xml php-xmlrpc php-ldap sendmail php-mbstring
 	if [ $? -ne 0 ]; then generic_error "Failed to install httpd"; exit 1; fi;
 	echo "setting httpd to start on boot"
 	/sbin/chkconfig httpd on

Modified: vcl/trunk/vcl-upgrade.sh
URL: http://svn.apache.org/viewvc/vcl/trunk/vcl-upgrade.sh?rev=1656792&r1=1656791&r2=1656792&view=diff
==============================================================================
--- vcl/trunk/vcl-upgrade.sh (original)
+++ vcl/trunk/vcl-upgrade.sh Tue Feb  3 16:44:04 2015
@@ -621,7 +621,7 @@ if [[ $DOWEB -eq 1 ]]; then
 	print_break
 	echo "Ensuring required php components are installed..."
 	missing=
-	for pkg in php php-gd php-mysql php-xml php-xmlrpc php-ldap php-process php-mbstring; do
+	for pkg in php php-gd php-mysql php-xml php-xmlrpc php-ldap php-mbstring; do
 		alt=$(echo $pkg | sed 's/php/php53/')
 		if ! (rpm --quiet -q $pkg || rpm --quiet -q $alt); then
 			missing="$missing $pkg"