diff options
Diffstat (limited to 'roles/install-custom-packages-wrapper')
-rw-r--r-- | roles/install-custom-packages-wrapper/tasks/main.yml | 4 | ||||
-rw-r--r-- | roles/install-custom-packages-wrapper/tests/inventory | 2 | ||||
-rw-r--r-- | roles/install-custom-packages-wrapper/tests/test.yml | 4 |
3 files changed, 10 insertions, 0 deletions
diff --git a/roles/install-custom-packages-wrapper/tasks/main.yml b/roles/install-custom-packages-wrapper/tasks/main.yml new file mode 100644 index 0000000..b67f73c --- /dev/null +++ b/roles/install-custom-packages-wrapper/tasks/main.yml @@ -0,0 +1,4 @@ +- name: Check if we need to install custom packages + include_role: + name: install-custom-packages + when: custom_packages is defined diff --git a/roles/install-custom-packages-wrapper/tests/inventory b/roles/install-custom-packages-wrapper/tests/inventory new file mode 100644 index 0000000..878877b --- /dev/null +++ b/roles/install-custom-packages-wrapper/tests/inventory @@ -0,0 +1,2 @@ +localhost + diff --git a/roles/install-custom-packages-wrapper/tests/test.yml b/roles/install-custom-packages-wrapper/tests/test.yml new file mode 100644 index 0000000..085b15c --- /dev/null +++ b/roles/install-custom-packages-wrapper/tests/test.yml @@ -0,0 +1,4 @@ +--- +- hosts: localhost + roles: + - install-custom-packages-wrapper |