main.yml 282 B

12345678910111213141516
  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. - name: Enable cockpit-ws
  12. service:
  13. name: cockpit.socket
  14. enabled: true
  15. state: started