您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

45 行
749B

  1. ---
  2. - import_tasks: local_facts.yaml
  3. - name: debian package requirements for buildbot
  4. apt:
  5. pkg:
  6. - python3-pip
  7. - fish
  8. - git
  9. - postgresql
  10. - python3-psycopg2
  11. - ssl-cert
  12. # ansible
  13. - python-setuptools
  14. - python-psycopg2
  15. - name: set correct permissions for /etc/ssl/private
  16. file:
  17. path: /etc/ssl/private
  18. mode: 0750
  19. owner: root
  20. group: ssl-cert
  21. - name: install buildbot
  22. pip:
  23. name: buildbot[bundle]
  24. executable: pip3
  25. - name: install gitea integration for buildbot
  26. pip:
  27. name: buildbot_gitea
  28. executable: pip3
  29. - name: install service_identity
  30. pip:
  31. name: service_identity
  32. executable: pip3
  33. - import_tasks: database.yaml
  34. - import_tasks: master.yaml