diff --git a/ipcheck.yaml b/ipcheck.yaml deleted file mode 100644 index 13c3fb6..0000000 --- a/ipcheck.yaml +++ /dev/null @@ -1,23 +0,0 @@ ---- -- hosts: localhost - gather_facts: false - tasks: - - name: Check IP address availability - shell: ping -c 1 10.10.43.{{ item }} - register: ping_result - ignore_errors: true - failed_when: false - #changed_when: false - with_sequence: start=100 end=253 - - - name: test - ignore_errors: true - failed_when: false - #changed_when: false - debug: - msg: "현재 응답이 없음으로 10.10.43.{{ item.item }} 해당 IP는 사용할 수 있는 IP 입니다" - with_items: "{{ ping_result.results }}" - loop_control: - label: "{{ item.item }}" - when: "'100% packet loss' in item.stdout" -