summaryrefslogtreecommitdiffstats
path: root/roles/lib_utils/tasks/main.yml
blob: 32ab9e0c6ec3221846e13292a626d7dc4eb784d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
---
- name: lib_utils detect ostree
  stat:
    path: /run/ostree-booted
  register: ostree_booted

- name: lib_utils ensure python-ruamel-yaml package is on target
  package:
    name: python-ruamel-yaml
    state: present
  when: not ostree_booted.stat.exists