2016-01-08 10:22:46 +01:00

15 lines
196 B
YAML

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