added some vagrant files for experiment

This commit is contained in:
2021-08-29 04:19:19 +00:00
parent 69167a7904
commit dcaca63b13
5 changed files with 203 additions and 0 deletions

View File

@ -0,0 +1,12 @@
- hosts: all
become: true
become_method: sudo
tasks:
- name: intall gcc
yum:
name: gcc
state: present
- name: intall valgrind
yum:
name: valgrind
state: present