summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2012-10-17 15:37:21 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2012-10-17 15:37:21 +0200
commit3bdbe21035613590811419d15b709ee94a38e241 (patch)
tree3d3b76346e1638757271271457e8938f47fd6a6a
parent45fe57c01d00ba58a159f5faf359454a6255aba4 (diff)
downloadapp.sh-apps-jenkins-3bdbe21035613590811419d15b709ee94a38e241.tar.gz
app.sh-apps-jenkins-3bdbe21035613590811419d15b709ee94a38e241.tar.bz2
app.sh-apps-jenkins-3bdbe21035613590811419d15b709ee94a38e241.tar.xz
app.sh-apps-jenkins-3bdbe21035613590811419d15b709ee94a38e241.zip
o Adding a jenkins app.
-rw-r--r--pom.xml76
-rw-r--r--src/main/unix/files/root/bin/jenkins27
-rw-r--r--src/main/unix/files/root/etc/app.conf1
3 files changed, 104 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..2a40ed6
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,76 @@
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>io.trygvis.appsh</groupId>
+ <artifactId>appsh-parent</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ </parent>
+ <groupId>io.trygvis.appsh.examples</groupId>
+ <artifactId>jenkins</artifactId>
+ <packaging>unix-zip</packaging>
+ <dependencies>
+ <dependency>
+ <groupId>org.jenkins-ci.main</groupId>
+ <artifactId>jenkins-war</artifactId>
+ <version>1.486</version>
+ <type>war</type>
+ </dependency>
+ </dependencies>
+ <repositories>
+ <repository>
+ <id>jenkins</id>
+ <url>http://repo.jenkins-ci.org/public/</url>
+ </repository>
+ </repositories>
+ <build>
+ <plugins>
+ <!--
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>appassembler-maven-plugin</artifactId>
+ <version>1.1</version>
+ <executions>
+ <execution>
+ <phase>generate-resources</phase>
+ <goals>
+ <goal>assemble</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <programs>
+ <program>
+ <name>jenkins</name>
+ <mainClass></mainClass>
+ </program>
+ </programs>
+ </configuration>
+ </plugin>
+ -->
+ <plugin>
+ <groupId>no.arktekk.unix</groupId>
+ <artifactId>unix-maven-plugin</artifactId>
+ <version>1.0-alpha-6</version>
+ <extensions>true</extensions>
+ <configuration>
+ <contact>Trygve Laugstol</contact>
+ <assembly>
+ <!--
+ <copyDirectory>
+ <from>target/appassembler</from>
+ <to>root</to>
+ <excludes>
+ <exclude>**/*.bat</exclude>
+ </excludes>
+ </copyDirectory>
+ -->
+ <copyArtifact>
+ <artifact>org.jenkins-ci.main:jenkins-war:war</artifact>
+ <toFile>root/wars/jenkins.war</toFile>
+ </copyArtifact>
+ </assembly>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/src/main/unix/files/root/bin/jenkins b/src/main/unix/files/root/bin/jenkins
new file mode 100644
index 0000000..dbb7d6c
--- /dev/null
+++ b/src/main/unix/files/root/bin/jenkins
@@ -0,0 +1,27 @@
+#!/bin/bash -e
+
+set -x
+
+. $APPSH_BASEDIR/.app/lib/app-conf
+
+LOGS=$APPSH_INSTANCE_HOME/logs
+
+mkdir -p $LOGS
+logfile=$LOGS/jenkins.out
+exec > $logfile 2>&1
+
+echo PID=$$
+
+ARGS=()
+
+IFS="
+"
+for line in $(get_conf_in_group $APPSH_BASEDIR $APPSH_NAME $APPSH_INSTANCE jenkins)
+do
+ ARGS+=("--$line")
+done
+
+exec java -jar wars/jenkins.war \
+ --logfile $APPSH_INSTANCE_HOME/logs/jenkins.log \
+ ${ARGS[@]} \
+ 2>&1
diff --git a/src/main/unix/files/root/etc/app.conf b/src/main/unix/files/root/etc/app.conf
new file mode 100644
index 0000000..9dfa29b
--- /dev/null
+++ b/src/main/unix/files/root/etc/app.conf
@@ -0,0 +1 @@
+app.bin=bin/jenkins