20 lines
258 B
YAML
20 lines
258 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
|
|
become: true
|
|
reboot:
|
|
|
|
|