main.yml 511 B

12345678910111213141516171819202122232425
  1. ---
  2. - name: setup firewall
  3. import_tasks: firewall.yml
  4. - name: Install cockpit-ws
  5. package:
  6. name: "{{ pkg_list | join(',') }}"
  7. state: present
  8. vars:
  9. pkg_list:
  10. - cockpit-ws
  11. - cockpit-system
  12. - cockpit-bridge
  13. - cockpit-docker
  14. - "{{ cockpit_plugins }}"
  15. when: not openshift_is_atomic | bool
  16. register: result
  17. until: result is succeeded
  18. - name: Enable cockpit-ws
  19. systemd:
  20. name: cockpit.socket
  21. enabled: true
  22. state: started
  23. when: not openshift_is_atomic | bool