Commit eac61b0a by ansible

no message

1 parent 2052ed46
Showing with 2 additions and 2 deletions
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
shell: lsof -n -i4TCP |grep -v 'ssh' | grep LISTEN | awk '{ print $2 }' shell: lsof -n -i4TCP |grep -v 'ssh' | grep LISTEN | awk '{ print $2 }'
register: pid register: pid
- name: Kill All found process - name: Kill All found process
shell: kill -9 {{ pid }} shell: kill -9 {{ pid.stdout }}
when: pid == "" when: pid.stdout == ""
- name: Check & Recreate Stack Folder - name: Check & Recreate Stack Folder
file: file:
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!