X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=sdnc-a1-controller%2Foam%2Finstallation%2Fansible-server%2Fsrc%2Fmain%2FPlaybooks%2Fansible_postcheck_jq%400.00.yml;fp=sdnc-a1-controller%2Foam%2Finstallation%2Fansible-server%2Fsrc%2Fmain%2FPlaybooks%2Fansible_postcheck_jq%400.00.yml;h=18d20edf50553d2f318a8be765b0f01c26e290b6;hb=b6fe5a1bbad372357f6b441e1657dd8bbe48dc1a;hp=0000000000000000000000000000000000000000;hpb=4e0c72d8a2570e256911eab7cc34f770a1aa327a;p=nonrtric.git diff --git a/sdnc-a1-controller/oam/installation/ansible-server/src/main/Playbooks/ansible_postcheck_jq@0.00.yml b/sdnc-a1-controller/oam/installation/ansible-server/src/main/Playbooks/ansible_postcheck_jq@0.00.yml new file mode 100755 index 00000000..18d20edf --- /dev/null +++ b/sdnc-a1-controller/oam/installation/ansible-server/src/main/Playbooks/ansible_postcheck_jq@0.00.yml @@ -0,0 +1,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