aboutsummaryrefslogtreecommitdiffstats
path: root/installation/ansible-server/src/main/Playbooks/ansible_postcheck_jq@0.00.yml
blob: 18d20edf50553d2f318a8be765b0f01c26e290b6 (plain)
1
2
3
4
5
6
7
8
9
10
---
- hosts: all
  tasks:
  - name: check jq is not installed
    stat:
      path: /usr/bin/jq
    register: abc
  - fail:
      msg: "jq is not installed"
    when: abc.stat.exists == false