main.yml 401 B

1234567891011121314151617
  1. ---
  2. - name: Install cockpit-ws
  3. package: name={{ item }} state=present
  4. with_items:
  5. - cockpit-ws
  6. - cockpit-shell
  7. - cockpit-bridge
  8. - cockpit-docker
  9. - "{{ cockpit_plugins }}"
  10. when: not openshift.common.is_containerized | bool
  11. - name: Enable cockpit-ws
  12. service:
  13. name: cockpit.socket
  14. enabled: true
  15. state: started
  16. when: not openshift.common.is_containerized | bool