add oracle instant client ansible role

This commit is contained in:
aaron
2021-08-24 13:29:46 +02:00
parent 3c13cd9cd8
commit f6127f262d
13 changed files with 291 additions and 0 deletions

24
tasks/main.yaml Normal file
View File

@@ -0,0 +1,24 @@
---
- name: load variables based on distribution type
include_vars: '{{ item }}'
with_first_found:
- '{{ ansible_distribution }}_{{ ansible_distribution_major_version }}.yaml'
- '{{ ansible_os_family }}.yaml'
tags:
- 'oic_vars'
- name: import fetching tasks
import_tasks: fetch.yaml
tags:
- 'oic_fetch'
- name: import installation tasks
import_tasks: install.yaml
tags:
- 'oic_install'
- name: impost configuration tasks
import_tasks: config.yaml
tags:
- 'oic_config'