summaryrefslogtreecommitdiffstats
path: root/tests/roles/cli/tasks/version.yaml
blob: 05616a5bbfbb6ff7af12112ec275c0e10eac4466 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
- name: check version of buildah rpm package
  command: rpm -q buildah
  register: rpmver
  args:
    warn: no

- debug: msg={{ rpmver.stdout }}

- name: check version of command buildah version
  command: buildah version
  register: ver

- debug: msg={{ ver.stdout }}