-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMTR-playbook.yml
29 lines (23 loc) · 1.11 KB
/
MTR-playbook.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
################################################################################
# description: Simple MTR play example
# usage: ansible-playbook MTR-playbook.yml --extra-vars 'Target=NameOrIP Count=100'
# author: Ernest G. Wilson II <[email protected]> (https://github.com/ernestgwilsonii)
# license: MIT
################################################################################
# Ansible Playbook options
# REF: http://docs.ansible.com/ansible/playbooks.html
#####################################################
- name: MTR play
hosts: localhost
serial: "100%"
gather_facts: False
tasks:
# Execute raw command(s)
# REF: http://docs.ansible.com/ansible/raw_module.html
##########################################################
# Generate a new self-signed certificate
- name: mtr {{Target|default ('8.8.8.8')}} --report --show-ips --aslookup --report-wide --report-cycles={{Count|default ('10')}}
raw: mtr {{Target|default ('8.8.8.8')}} --report --show-ips --aslookup --report-wide --report-cycles={{Count|default ('10')}}
register: mtr_results
- debug: msg="{{mtr_results.stdout_lines}}"