diff --git a/Changelog b/Changelog index 4c9e6d2c6b..34162c8d7c 100644 --- a/Changelog +++ b/Changelog @@ -3,12 +3,16 @@ Initial Release: Monday, Oct 12 2011 Supported Presently Changelog for 1.3.27 - * Detect whether ledgersmb.conf exists during Makefile.PL run and create if not (Chris T) * Fixed prepare-company-database.sh clobbering the Apache configuration on every run (Chris T, 3595000) * Fixed error sorting recon search by account (Chris T, h/t Erik H, 3589473) +* Fixed configure_apache.sh, read input, change of file name from + ledgersmb-httpd.conf to ledgersmb-httpd.conf.template (Havard S) + +Chris T is Chris Travers +Havard S is Havard Sorli Changelog for 1.3.26 * Added db statistics post-upgrade and pre/post rebuild (Chris T, 3586113) diff --git a/configure_apache.sh b/configure_apache.sh index e5c7314be1..af2285d3c2 100644 --- a/configure_apache.sh +++ b/configure_apache.sh @@ -2,15 +2,15 @@ CWD=`pwd` -sed -i.orig "s|WORKING_DIR|$CWD|" ledgersmb-httpd.conf; +sed -e "s|WORKING_DIR|$CWD|" ledgersmb-httpd.conf.template > ledgersmb-httpd.conf username="apache" -read -p "Which user does your web server run as? [$username]" +read -p "Which user does your web server run as? [$username]" REPLY chown ${REPLY:-$username} spool templates css location="/etc/httpd/conf.d" -read -p "Where do we copy the ledgersmb-httpd.conf file to? [$location] " +read -p "Where do we copy the ledgersmb-httpd.conf file to? [$location] " REPLY cp ledgersmb-httpd.conf ${REPLY:-$location}