commit cec3899d6968a40971b918437e27e944e379ecb9 Author: Antonio J. Delgado Date: Tue Oct 11 10:19:11 2022 +0300 Initial commit with previous code diff --git a/defaults/main.yml b/defaults/main.yml new file mode 100644 index 0000000..711a2b1 --- /dev/null +++ b/defaults/main.yml @@ -0,0 +1,3 @@ +--- +# Default values for variables of the role +# variable_name: value diff --git a/handlers/main.yml b/handlers/main.yml new file mode 100644 index 0000000..ebd48d8 --- /dev/null +++ b/handlers/main.yml @@ -0,0 +1,3 @@ +--- +# - name: Refresh aliases +# shell: newaliases diff --git a/tasks/configure.yml b/tasks/configure.yml new file mode 100644 index 0000000..7cc1907 --- /dev/null +++ b/tasks/configure.yml @@ -0,0 +1,3 @@ +--- +# - name: Ensure is configure +# something: something \ No newline at end of file diff --git a/tasks/install.yml b/tasks/install.yml new file mode 100644 index 0000000..221b766 --- /dev/null +++ b/tasks/install.yml @@ -0,0 +1,3 @@ +--- +# - name: Ensure is installed +# something: something diff --git a/tasks/main.yml b/tasks/main.yml new file mode 100644 index 0000000..cbe813e --- /dev/null +++ b/tasks/main.yml @@ -0,0 +1,5 @@ +--- +- name: Ensure installation + include_tasks: install.yml +- name: Ensure configuration + include_tasks: configure.yml \ No newline at end of file