Skip to content

Instantly share code, notes, and snippets.

View Nikide's full-sized avatar
😆
aaaaaaaaaaaaaaaaaaaaaaa

Nikitos Nikide

😆
aaaaaaaaaaaaaaaaaaaaaaa
  • Nice company
  • Russia, Moscow Region
View GitHub Profile
@Nikide
Nikide / ping_and_send_email.yml
Last active September 5, 2025 10:16
Ping hosts and send log of all hosts in single email
---
- name: "Ping and send email"
gather_facts: true
hosts: all
vars:
log: {}
tasks:
- name: "Ping servers"
shell: "ping {{ ansible_hostname }} -c 60 -q"
register: pingout