13 lines
338 B
YAML
Raw Normal View History

---
# Nmap port test
2021-02-03 21:39:24 -06:00
- name: General | Tests | nmap | Run Count
shell: "nmap --open localhost | grep -c open > /root/nmap.txt"
2021-02-03 21:29:45 -06:00
2021-02-03 21:39:24 -06:00
- name: General | Tests | nmap | Run Open
shell: "nmap --open localhost | grep open >> /root/nmap.txt"
- name: General | Tests | nmap | Make Viewable
2021-02-03 21:29:45 -06:00
file:
path: "{{ nmap_report }}"
2021-02-03 21:29:45 -06:00
mode: '0444'