Initial commit with previous code

This commit is contained in:
Antonio J. Delgado 2022-10-11 10:19:11 +03:00
commit cec3899d69
5 changed files with 17 additions and 0 deletions

3
defaults/main.yml Normal file
View file

@ -0,0 +1,3 @@
---
# Default values for variables of the role
# variable_name: value

3
handlers/main.yml Normal file
View file

@ -0,0 +1,3 @@
---
# - name: Refresh aliases
# shell: newaliases

3
tasks/configure.yml Normal file
View file

@ -0,0 +1,3 @@
---
# - name: Ensure is configure
# something: something

3
tasks/install.yml Normal file
View file

@ -0,0 +1,3 @@
---
# - name: Ensure is installed
# something: something

5
tasks/main.yml Normal file
View file

@ -0,0 +1,5 @@
---
- name: Ensure installation
include_tasks: install.yml
- name: Ensure configuration
include_tasks: configure.yml