Advertisement
CustomEntity

Untitled

Feb 27th, 2023
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. jenkins:
  2. systemMessage: "Hello! Welcome to my Jenkins instance :)"
  3. securityRealm:
  4. local:
  5. allowsSignup: false
  6. users:
  7. - id: "jigglypuff"
  8. name: "Jigglypuff"
  9. description: "loves to sing"
  10. password: "password"
  11. jobs:
  12. - script: >
  13. job('Disk Space Check') {
  14. steps {
  15. shell('df')
  16. }
  17. }
  18.  
  19. job('Daily Dose of Satisfaction') {
  20. parameters {
  21. stringParam('NAME', '', 'Nom de l\'utilisateur')
  22. }
  23. steps {
  24. shell("echo \"Hello dear $NAME!\"")
  25. shell('date')
  26. shell("echo \"This is your DDoS number $BUILD_NUMBER.\"")
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement