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
| # defaults for jenkins continuous integration server | |
| JENKINS_ARGS="-jnlpUrl http://test.lnc.jp:8080/computer/wock/slave-agent.jnlp" | |
| # jenkins home location | |
| JENKINS_HOME=/opt/jenkins-slave | |
| # location of the jenkins war file | |
| JENKINS_WAR=$JENKINS_HOME/slave.jar | |
| # pulled in from the init script; makes things easier. | |
| NAME=jenkins |
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
| from deployment.cuisine import * | |
| from fabric.api import * | |
| from fabric.context_managers import * | |
| from fabric.utils import puts | |
| from fabric.colors import red, green | |
| import simplejson | |
| import os |
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 | |
| # | |
| # skeleton example file to build /etc/init.d/ scripts. | |
| # This file should be used to construct scripts for /etc/init.d. | |
| # | |
| # Written by Miquel van Smoorenburg <[email protected]>. | |
| # Modified for Debian | |
| # by Ian Murdock <[email protected]>. | |
| # Further changes by Javier Fernandez-Sanguino <[email protected]> | |
| # |