blob: 066ee3f3b62d70bcfaafe0608950b93e73efa6a0 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | ---
- name: setup firewall
  include: firewall.yml
  static: yes
- name: Install cockpit-ws
  package: name={{ item }} state=present
  with_items:
    - cockpit-ws
    - cockpit-system
    - cockpit-bridge
    - cockpit-docker
    - "{{ cockpit_plugins }}"
  when: not openshift.common.is_containerized | bool
- name: Enable cockpit-ws
  systemd:
    name: cockpit.socket
    enabled: true
    state: started
  when: not openshift.common.is_containerized | bool
 |