jenkins-slave 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. #!/usr/bin/env sh
  2. # The MIT License
  3. #
  4. # Copyright (c) 2015, CloudBees, Inc.
  5. #
  6. # Permission is hereby granted, free of charge, to any person obtaining a copy
  7. # of this software and associated documentation files (the "Software"), to deal
  8. # in the Software without restriction, including without limitation the rights
  9. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. # copies of the Software, and to permit persons to whom the Software is
  11. # furnished to do so, subject to the following conditions:
  12. #
  13. # The above copyright notice and this permission notice shall be included in
  14. # all copies or substantial portions of the Software.
  15. #
  16. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. # THE SOFTWARE.
  23. # Usage jenkins-slave.sh [options] -url http://jenkins [SECRET] [AGENT_NAME]
  24. # Optional environment variables :
  25. # * JENKINS_TUNNEL : HOST:PORT for a tunnel to route TCP traffic to jenkins host, when jenkins can't be directly accessed over network
  26. # * JENKINS_URL : alternate jenkins URL
  27. # * JENKINS_SECRET : agent secret, if not set as an argument
  28. # * JENKINS_AGENT_NAME : agent name, if not set as an argument
  29. if [ $# -eq 1 ]; then
  30. # if `docker run` only has one arguments, we assume user is running alternate command like `bash` to inspect the image
  31. exec "$@"
  32. else
  33. # if -tunnel is not provided try env vars
  34. case "$@" in
  35. *"-tunnel "*) ;;
  36. *)
  37. if [ ! -z "$JENKINS_TUNNEL" ]; then
  38. TUNNEL="-tunnel $JENKINS_TUNNEL"
  39. fi ;;
  40. esac
  41. if [ -n "$JENKINS_URL" ]; then
  42. URL="-url $JENKINS_URL"
  43. fi
  44. if [ -n "$JENKINS_NAME" ]; then
  45. JENKINS_AGENT_NAME="$JENKINS_NAME"
  46. fi
  47. if [ -z "$JNLP_PROTOCOL_OPTS" ]; then
  48. echo "Warning: JnlpProtocol3 is disabled by default, use JNLP_PROTOCOL_OPTS to alter the behavior"
  49. JNLP_PROTOCOL_OPTS="-Dorg.jenkinsci.remoting.engine.JnlpProtocol3.disabled=true"
  50. fi
  51. # If both required options are defined, do not pass the parameters
  52. OPT_JENKINS_SECRET=""
  53. if [ -n "$JENKINS_SECRET" ]; then
  54. case "$@" in
  55. *"${JENKINS_SECRET}"*) echo "Warning: SECRET is defined twice in command-line arguments and the environment variable" ;;
  56. *)
  57. OPT_JENKINS_SECRET="${JENKINS_SECRET}" ;;
  58. esac
  59. fi
  60. OPT_JENKINS_AGENT_NAME=""
  61. if [ -n "$JENKINS_AGENT_NAME" ]; then
  62. case "$@" in
  63. *"${JENKINS_AGENT_NAME}"*) echo "Warning: AGENT_NAME is defined twice in command-line arguments and the environment variable" ;;
  64. *)
  65. OPT_JENKINS_AGENT_NAME="${JENKINS_AGENT_NAME}" ;;
  66. esac
  67. fi
  68. #TODO: Handle the case when the command-line and Environment variable contain different values.
  69. #It is fine it blows up for now since it should lead to an error anyway.
  70. exec java $JAVA_OPTS $JNLP_PROTOCOL_OPTS -cp /usr/share/jenkins/slave.jar hudson.remoting.jnlp.Main -headless $TUNNEL $URL $OPT_JENKINS_SECRET $OPT_JENKINS_AGENT_NAME "$@"
  71. fi