Chore: Add gerrit maven verify GHA workflow
[sdnc/oam.git] / installation / ansible-server / src / main / Playbooks / 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