Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

20 Zeilen
464B

  1. ---
  2. # https://github.com/ansible/ansible/issues/30599
  3. - name: "fill config file with a global variable because of ansible bug #30599"
  4. copy:
  5. content: RUN_MODE = prod
  6. dest: /etc/gitea/app.ini
  7. force: no
  8. - name: gitea config
  9. ini_file:
  10. path: /etc/gitea/app.ini
  11. section: "{{ item.section }}"
  12. option: "{{ item.option }}"
  13. value: "{{ item.value }}"
  14. owner: git
  15. group: git
  16. notify: restart gitea
  17. with_items: "{{ _gitea_config }}"