- Add dbhome variable to group_vars/all.yml for consistency - Remove duplicate Oracle variables from oracle-db-install defaults - Standardize oracle_home definition across all roles - Keep only role-specific variables in individual role defaults - All common variables now centralized in group_vars/all.yml
20 lines
526 B
YAML
20 lines
526 B
YAML
---
|
|
# Variables par défaut surchargeables pour oracle-db-install
|
|
# Les variables communes sont lues depuis group_vars/all.yml
|
|
|
|
oracle_install_edition: "EE"
|
|
oracle_zip_filename: "Oracle_Database_19.3.0.0.0_for_Linux_x86-64.zip"
|
|
|
|
u01_free_space_gb: 8
|
|
tmp_free_space_gb: 1
|
|
etc_free_spage_gb: 1
|
|
var_free_spage_gb: 1
|
|
|
|
db_response_file: "install_db_{{ oracle_version }}.rsp"
|
|
|
|
u01_size_gb: 1
|
|
tmp_size_gb: 1
|
|
patch_dir: "{{ oracle_sources }}"
|
|
opatch_file: p6880880_190000_Linux-x86-64.zip
|
|
psu_file: patch_ru.zip
|
|
patch_number: 36233263 |