Exclude Apache from custombuild

Tristan

Verified User
Joined
Feb 11, 2005
Messages
684
Location
The Netherlands
Hi there,

is it possible to either exclude apache (for a while) from custombuild and the update notifications or set the apache version to a specific point point release in the options.conf?

Now I just change the version in versions.txt every time I run the build script.
 
What version do you want to set it to?

I think you can do the following to keep your versions.txt the same:

Code:
./build set autover no
 
Thanks for your reply, I want to set Apache at 2.2.23 for a while since we had some trouble with .24 unfortunately. Is there any way to just keep Apache at that version while still updating other services?
 
Mine always updates things.

This is what I found in the code though.:

Code:
# Download versions.txt if AUTOVER_OPT is set to "yes"
if [ "${AUTOVER_OPT}" = "yes" ]; then
  wget ${WEBPATH}/versions.txt -O ${VERSIONS_FILE} 2> /dev/null
fi
 
Hmm this isn't as easy as I hoped since the build script is auto updated itself as well, otherwise I could just set APACHE2_VER=2.2.22 there.

Your suggestion will pause all future updates, also for other services, with AUTOVER_OPT set to no so not really an option either.

Tricking the build script by renaming the 2.2.22.tar.gz file to 2.2.23 isn't possible as well obviously because of the MD5 check.
 
Back
Top