summaryrefslogtreecommitdiffstats
path: root/roles/cockpit/tasks/main.yml
blob: 875cbad21bb5c09a4b1baca87aed33cbc3543bb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
- name: Install cockpit-ws
  yum:
    name: "{{ item }}"
    state: present
  with_items:
    - cockpit-ws
    - cockpit-shell
    - cockpit-bridge
    - "{{ cockpit_plugins }}"

- name: Enable cockpit-ws
  service:
    name: cockpit.socket
    enabled: true
    state: started