Skip to content

Instantly share code, notes, and snippets.

# ping.yml
---
- hosts: all
tasks:
- name: Ping all servers
action: ping
from flask import Flask
app = Flask(__name__)
@app.route('/')
def counter():
return '0'
# ping.yml
---
- hosts: all
tasks:
- name: Ping all servers
action: ping