summaryrefslogtreecommitdiffstats
path: root/roles/cockpit/tasks/main.yml
blob: b90e7dfd651679355a55c16d820eea67c77783d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
- name: Install cockpit-ws
  action: "{{ ansible_pkg_mgr }} 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