Created
December 25, 2010 05:57
-
-
Save skull-squadron/754718 to your computer and use it in GitHub Desktop.
Be advised: Fully automatic installation. Use with care.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Install Hudson from the experimental repository. | |
sudo su - -c " \ | |
wget -qO- http://pkg.hudson-labs.org/debian/hudson-labs.org.key | sudo apt-key add - \ | |
&& echo 'deb http://pkg.hudson-labs.org/debian binary/' > /etc/apt/sources.list.d/hudson.list \ | |
&& apt-get update \ | |
&& apt-get install -y hudson \ | |
" | |
# Total download is approx 32 MB depending on platform. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
TODO
Needs to be able to setup the following database instead of the Derby / HSQLDB: MySQL, Postgresql, Enterprise DB / Oracle. Maybe DB2 and M$SQL for sport.
Update: comments and improvements strongly encouraged! :)