13 lines
344 B
YAML
Raw Normal View History

---
# Nmap port test
2021-02-03 21:39:24 -06:00
- name: General | Tests | nmap | Run Count
2021-02-06 07:19:58 -06:00
shell: "nmap --open localhost | grep -c open > {{ nmap_report }}"
2021-02-03 21:29:45 -06:00
2021-02-03 21:39:24 -06:00
- name: General | Tests | nmap | Run Open
2021-02-06 07:19:58 -06:00
shell: "nmap --open localhost | grep open >> {{ nmap_report }}"
2021-02-03 21:39:24 -06:00
- name: General | Tests | nmap | Make Viewable
2021-02-03 21:29:45 -06:00
file:
path: "{{ nmap_report }}"
2021-02-06 07:37:31 -06:00
mode: '0777'