main.yml 489 B

12345678910111213141516171819202122
  1. ---
  2. - name: setup firewall
  3. import_tasks: firewall.yml
  4. - name: Install cockpit-ws
  5. package: name={{ item }} state=present
  6. with_items:
  7. - cockpit-ws
  8. - cockpit-system
  9. - cockpit-bridge
  10. - cockpit-docker
  11. - "{{ cockpit_plugins }}"
  12. when: not openshift_is_containerized | bool
  13. register: result
  14. until: result is succeeded
  15. - name: Enable cockpit-ws
  16. systemd:
  17. name: cockpit.socket
  18. enabled: true
  19. state: started
  20. when: not openshift_is_containerized | bool