Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

46 wiersze
919B

  1. ---
  2. - name: debian package requirements for buildbot
  3. apt:
  4. pkg:
  5. - python3-pip
  6. - fish
  7. - git
  8. - name: install buildbot
  9. pip:
  10. name: buildbot[bundle]
  11. executable: pip3
  12. - name: install gitea integration for buildbot
  13. pip:
  14. name: buildbot_gitea
  15. executable: pip3
  16. - name: buildbot system group
  17. group:
  18. name: buildbot
  19. system: yes
  20. - name: buildbot system user
  21. user:
  22. name: buildbot
  23. group: buildbot
  24. system: yes
  25. home: /var/lib/buildbot
  26. shell: /usr/bin/fish
  27. - name: buildbot var directory
  28. file:
  29. path: /var/lib/buildbot
  30. state: directory
  31. owner: buildbot
  32. group: buildbot
  33. mode: 0700
  34. # source of unit file from https://github.com/buildbot/buildbot-contrib/blob/master/master/contrib/systemd/buildbot%40.service
  35. - name: buildbot systemd service unit
  36. copy:
  37. src: systemd/buildbot@.service
  38. dest: /etc/systemd/system/buildbot@.service