playground/vagrant/ansible-initial.yml

18 lines
415 B
YAML
Raw Normal View History

- hosts: all
become: true
become_method: sudo
tasks:
2021-08-29 08:11:32 +00:00
## TODO: add the default login users
## TODO: setup sudoers configurations
## TODO: setup ssh security policies
## TODO: setup login policies
## TODO: whatever is needed...
- name: intall gcc
yum:
name: gcc
state: present
- name: intall valgrind
yum:
name: valgrind
state: present