playground/vagrant/ansible-initial.yml

13 lines
221 B
YAML

- hosts: all
become: true
become_method: sudo
tasks:
- name: intall gcc
yum:
name: gcc
state: present
- name: intall valgrind
yum:
name: valgrind
state: present