Delete ipcheck.yaml

This commit is contained in:
ByeonJungHun
2023-06-30 10:46:18 +09:00
committed by GitHub
parent bbc5267100
commit 6052a43bf9

View File

@@ -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"