Fix missing payload for DGs and Playbooks of SW upgrade
[sdnc/oam.git] / installation / ansible-server / src / main / Playbooks / ansible_huawei_postcheck@0.01.yml
index ad4edf5..b9b1ab8 100644 (file)
@@ -3,13 +3,11 @@
   tasks:\r
   - name: create a temporary file for additional data\r
     file: \r
-        path: /tmp/tmp-{{Id}}\r
-        state: touch\r
-    become: false\r
+      path: /tmp/tmp-{{Id}}\r
+      state: touch\r
 \r
   - name: prepare additional data\r
     shell: echo {{additionalData}} > /tmp/tmp-{{Id}}\r
-    become: false\r
 \r
   - name: execute post-check operation\r
     shell: ./swm/upgrade-post-check {{pnfId}} {{oldSwVersion}} {{targetSwVersion}} {{ruleName}} /tmp/tmp-{{Id}}\r
 \r
   - name: remove the temporary file\r
     file:\r
-        path: /tmp/tmp-{{Id}}\r
-        state: absent\r
-    become: false\r
+      path: /tmp/tmp-{{Id}}\r
+      state: absent\r
+\r
+  - name: build error message\r
+    set_fact:\r
+      err_msg:\r
+        "reason": "{{postcheck_result.stderr}}"\r
+        "result": "Failure"\r
+    when: postcheck_result is failed and postcheck_result.stdout == "" and postcheck_result.stderr != ""\r
+\r
+  - name: write error message to file\r
+    local_action: copy content="{{err_msg}}" dest="{{inventory_dir}}/{{inventory_hostname}}_results.txt"\r
+    when: postcheck_result is failed and postcheck_result.stdout == "" and postcheck_result.stderr != ""\r
 \r
   - name: use result of post-check as the result of Playbook\r
     fail:\r