Initial commit with previous code
This commit is contained in:
commit
cec3899d69
5 changed files with 17 additions and 0 deletions
3
defaults/main.yml
Normal file
3
defaults/main.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
# Default values for variables of the role
|
||||
# variable_name: value
|
3
handlers/main.yml
Normal file
3
handlers/main.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
# - name: Refresh aliases
|
||||
# shell: newaliases
|
3
tasks/configure.yml
Normal file
3
tasks/configure.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
# - name: Ensure is configure
|
||||
# something: something
|
3
tasks/install.yml
Normal file
3
tasks/install.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
# - name: Ensure is installed
|
||||
# something: something
|
5
tasks/main.yml
Normal file
5
tasks/main.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
- name: Ensure installation
|
||||
include_tasks: install.yml
|
||||
- name: Ensure configuration
|
||||
include_tasks: configure.yml
|
Loading…
Reference in a new issue