2021-08-29 04:19:19 +00:00
|
|
|
- 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...
|
2021-08-29 04:19:19 +00:00
|
|
|
- name: intall gcc
|
|
|
|
yum:
|
|
|
|
name: gcc
|
|
|
|
state: present
|
|
|
|
- name: intall valgrind
|
|
|
|
yum:
|
|
|
|
name: valgrind
|
|
|
|
state: present
|