2018-05-03 20:35:58 +00:00

15 lines
198 B
YAML

---
- hosts: templatevms
become: True
tasks:
- name: Deploy some editors
dnf:
pkg: '{{ item }}'
state: 'present'
with_items:
- 'emacs'
- 'nano'
- 'vim'