From cec3899d6968a40971b918437e27e944e379ecb9 Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Tue, 11 Oct 2022 10:19:11 +0300 Subject: [PATCH] Initial commit with previous code --- defaults/main.yml | 3 +++ handlers/main.yml | 3 +++ tasks/configure.yml | 3 +++ tasks/install.yml | 3 +++ tasks/main.yml | 5 +++++ 5 files changed, 17 insertions(+) create mode 100644 defaults/main.yml create mode 100644 handlers/main.yml create mode 100644 tasks/configure.yml create mode 100644 tasks/install.yml create mode 100644 tasks/main.yml 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