20 lines
389 B
YAML
20 lines
389 B
YAML
|
---
|
||
|
- name: run it
|
||
|
hosts: puppets
|
||
|
gather_facts: no
|
||
|
become: yes
|
||
|
tasks:
|
||
|
- name: run 'em
|
||
|
community.general.puppet:
|
||
|
summarize: true
|
||
|
|
||
|
- name: run it 2
|
||
|
hosts: samehost-zero.guaranteedstruggle.host
|
||
|
gather_facts: no
|
||
|
become: yes
|
||
|
tasks:
|
||
|
- name: run this
|
||
|
community.general.puppet:
|
||
|
summarize: yes
|
||
|
certname: samehost-zero.guaranteedstuggle.host
|