main.yml 527 B

12345678910111213141516171819202122232425262728
  1. ---
  2. - name: Install cockpit-ws
  3. yum:
  4. name: "{{ item }}"
  5. state: present
  6. with_items:
  7. - cockpit-ws
  8. - cockpit-shell
  9. - cockpit-bridge
  10. - "{{ cockpit_plugins }}"
  11. when: ansible_pkg_mgr == "yum"
  12. - name: Install cockpit-ws
  13. dnf:
  14. name: "{{ item }}"
  15. state: present
  16. with_items:
  17. - cockpit-ws
  18. - cockpit-shell
  19. - cockpit-bridge
  20. - "{{ cockpit_plugins }}"
  21. when: ansible_pkg_mgr == "dnf"
  22. - name: Enable cockpit-ws
  23. service:
  24. name: cockpit.socket
  25. enabled: true
  26. state: started