Skip to content
Snippets Groups Projects
Commit f4a452a8 authored by Demian Katz's avatar Demian Katz
Browse files

Disable configuration of Apache during startup and shutdown since this is no...

Disable configuration of Apache during startup and shutdown since this is no longer a prerequisite for running unit tests, and it seems to be causing problems on the live CI server.
parent 19295556
No related merge requests found
......@@ -74,10 +74,13 @@
<!-- set up appropriate read/write permissions for Apache -->
<exec command="chmod -R a+w ${srcdir}/local/cache" />
<!-- activate Apache -->
<!-- Generate basic configuration -->
<exec command="php ${srcdir}/install.php --use-defaults" />
<!-- Activate Apache (currently disabled; not necessary unless we start using Selenium again)
<copy file="${srcdir}/local/httpd-vufind.conf" tofile="${apacheconfdir}/vufindtest" />
<exec command="${apachectl} restart" />
-->
<!-- build and configure the requested database type -->
<if>
......@@ -120,9 +123,10 @@
<!-- Uninstall and Deactivate VuFind -->
<target name="shutdown" description="deactivate and uninstall demo">
<!-- remove Apache settings -->
<!-- Remove Apache settings (disabled until corresponding lines in startup are also uncommented)
<exec command="rm ${apacheconfdir}/vufindtest" />
<exec command="${apachectl} restart" />
-->
<!-- drop database -->
<if>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment