19 lines
237 B
YAML
19 lines
237 B
YAML
---
|
|
|
|
- hosts: localhost
|
|
connection: local
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
- name: create temp group
|
|
add_host:
|
|
name: '192.168.86.10'
|
|
groups: restart
|
|
|
|
- hosts: restart
|
|
tasks:
|
|
- name: restart
|
|
ping:
|
|
|
|
|