Created
May 2, 2014 15:35
-
-
Save royingantaginting/0db391c8bc6daa672610 to your computer and use it in GitHub Desktop.
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/bash | |
wget -nc http://localhost:8080/jnlpJars/jenkins-cli.jar | |
wget -nc -O default.js http://updates.jenkins-ci.org/update-center.json | |
sed '1d;$d' default.js > default.json | |
curl -X POST -H "Accept: application/json" -d @default.json http://localhost:8080/updateCenter/byId/default/postBack --verbose | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin analysis-collector | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin checkstyle | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin dry | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin phing | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin plot | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin pmd | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin github | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin publish-over-ssh | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin sonar | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin cloverphp | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin envinject | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin token-macro | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin email-ext | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin compress-artifacts | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin copyartifact | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin greenballs | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin disk-usage | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin buildresult-trigger | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin parameterized-trigger | |
java -jar jenkins-cli.jar -s http://localhost:8080 install-plugin build-with-parameters | |
java -jar jenkins-cli.jar -s http://localhost:8080 safe-restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment