5e36a5714a
Hudson can run standalone (has own tiny web server) or in a Java-capable web server or application server. ok sthen@, kurt@ after considerable cluesticking (by them)
13 lines
225 B
Bash
13 lines
225 B
Bash
#!/bin/ksh -f
|
|
|
|
JAVACMD=$(javaPathHelper -c hudson)
|
|
export JAVACMD
|
|
|
|
export HUDSON_HOME=/var/hudson
|
|
|
|
PORT=8000
|
|
|
|
echo Starting Hudson on port ${PORT} >&2
|
|
|
|
${JAVACMD} -jar ${TRUEPREFIX}/share/hudson/hudson.war --httpPort=${PORT}
|