Is it possible to install Apache with a script/batch file?

link|improve this question

0% accept rate
You might be better off asking this question at serverfault.com – SamStephens Mar 5 '11 at 4:11
feedback

1 Answer

Sure is...

 apt-get install apache2

right inside the ol' batch file, depending on your package manager.

If you wanted to install from source, just

wget linktoapachesource.com

and put all the steps you would normally take inside a bash script.

link|improve this answer
Parameters of the Apache installation - where they should be stored? – VTA Mar 5 '11 at 4:43
store them in the same line in which you would enter them. Bash script will just execute the lines that you would normally enter by hand. So if you have specific flags when you are building, just include them in the line representing the command.\ – Orbit Mar 5 '11 at 4:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.