18d20edf50553d2f318a8be765b0f01c26e290b6
[sdnc/oam.git] / installation / ansible-server / src / main / yml / ansible_postcheck_jq@0.00.yml
1 ---
2 - hosts: all
3   tasks:
4   - name: check jq is not installed
5     stat:
6       path: /usr/bin/jq
7     register: abc
8   - fail:
9       msg: "jq is not installed"
10     when: abc.stat.exists == false