Guest User

Untitled

a guest
Jul 16th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. #!/usr/bin/env sh
  2.  
  3. # fail if anything errors
  4. set -e
  5. # fail if a function call is missing an argument
  6. set -u
  7.  
  8. username=$(cat /nexus-password/username)
  9. password=$(cat /nexus-password/password)
  10. ip=$POD_IP
  11. config=/nexus-config/config.yaml
  12.  
  13. #groovy -Dgroovy.grape.report.downloads=true -Divy.message.logger.level=4 local.groovy
  14. groovy -Dgrape.root=/home/groovy/grapes -Divy.message.logger.level=4 local.groovy -u "$username" -p "$password" -c "$config" -i "$ip"
Add Comment
Please, Sign In to add comment