mirror of
https://github.com/Rudd-O/ansible-qubes.git
synced 2025-03-01 14:22:33 +01:00
15 lines
198 B
YAML
15 lines
198 B
YAML
---
|
|
|
|
- hosts: templatevms
|
|
become: True
|
|
|
|
tasks:
|
|
- name: Deploy some editors
|
|
dnf:
|
|
pkg: '{{ item }}'
|
|
state: 'present'
|
|
with_items:
|
|
- 'emacs'
|
|
- 'nano'
|
|
- 'vim'
|