main.yml 297 B

1234567891011121314
  1. ---
  2. - name: Install cockpit-ws
  3. action: "{{ ansible_pkg_mgr }} name={{ item }} state=present"
  4. with_items:
  5. - cockpit-ws
  6. - cockpit-shell
  7. - cockpit-bridge
  8. - "{{ cockpit_plugins }}"
  9. - name: Enable cockpit-ws
  10. service:
  11. name: cockpit.socket
  12. enabled: true
  13. state: started