@@ -11,39 +11,39 @@ sap_hana_install_software_directory: '/software/hana'
1111# created again before the extraction starts.
1212sap_hana_install_software_extract_directory : " {{ sap_hana_install_software_directory }}/extracted"
1313
14- # Set this variabe to `yes ` if you want to copy the SAR files from `sap_hana_install_software_directory`
14+ # Set this variabe to `true ` if you want to copy the SAR files from `sap_hana_install_software_directory`
1515# to `sap_hana_install_software_extract_directory/sarfiles` before extracting.
1616# This might be useful if the SAR files are on a slow fileshare.
17- sap_hana_install_copy_sarfiles : no
17+ sap_hana_install_copy_sarfiles : false
1818
19- # Set the following variable to `yes ` if you want to keep the copied SAR files. By default, the SAR files will be
19+ # Set the following variable to `true ` if you want to keep the copied SAR files. By default, the SAR files will be
2020# removed after extraction.
21- sap_hana_install_keep_copied_sarfiles : no
21+ sap_hana_install_keep_copied_sarfiles : false
2222
2323# File name of SAPCAR*EXE in the software directory. If the variable is not set and there is more than one SAPCAR executable
2424# in the software directory, the latest SAPCAR executable for the CPU architecture will be selected automatically.
25- # sap_hana_install_sapcar_filename: SAPCAR_1115-70006178.EXE
25+ # sap_hana_install_sapcar_filename: SAPCAR_1115-70006178.EXE
2626
2727# List of file names of SAR files to extract. Can be set in case there are more SAR files in the software directory
2828# than needed or desired for the HANA installation.
29- # sap_hana_install_sarfiles:
30- # - SAPHOSTAGENT54_54-80004822.SAR
31- # - IMDB_SERVER20_060_0-80002031.SAR
29+ # sap_hana_install_sarfiles:
30+ # - SAPHOSTAGENT54_54-80004822.SAR
31+ # - IMDB_SERVER20_060_0-80002031.SAR
3232
33- # Set the following variable to `yes ` to let the role abort if checksum verification fails for any SAPCAR or SAR file
33+ # Set the following variable to `true ` to let the role abort if checksum verification fails for any SAPCAR or SAR file
3434# called or used by the role.
35- sap_hana_install_verify_checksums : no
35+ sap_hana_install_verify_checksums : false
3636
3737# Checksum algorithm for checksum verification. Default is sha256, for which a checksum is available in the SAP software
3838# download pages.
3939sap_hana_install_checksum_algorithm : sha256
4040
4141# In case a global checksum file is present, use the following variable to specify the full path to this file:
42- # sap_hana_install_global_checksum_file: "{{ sap_hana_install_software_directory }}/SHA256"
42+ # sap_hana_install_global_checksum_file: "{{ sap_hana_install_software_directory }}/SHA256"
4343
44- # Set the following variable to `yes ` to let hdbclm verify SAR file signatures. This corresponds to the hdblcm command line
44+ # Set the following variable to `true ` to let hdbclm verify SAR file signatures. This corresponds to the hdblcm command line
4545# argument `--verify_signature`.
46- sap_hana_install_verify_signature : no
46+ sap_hana_install_verify_signature : false
4747
4848# hdblcm configfile related variables:
4949# Directory where to store the hdblcm configfile template and the Jinja2 template:
@@ -57,31 +57,31 @@ sap_hana_install_local_configfile_directory: '/tmp'
5757
5858# If you would like to perform an installation check after the installation, set the following variable to 'yes'.
5959# Note: This only works if there is no static configfile available in sap_hana_install_configfile_directory.
60- sap_hana_install_check_installation : no
60+ sap_hana_install_check_installation : false
6161
62- # Only if sap_hana_install_check_installation (above) is set to 'yes ', you can select which command to use by setting the
63- # following variable to `yes ` or `no `.
62+ # Only if sap_hana_install_check_installation (above) is set to 'true ', you can select which command to use by setting the
63+ # following variable to `true ` or `false `.
6464# yes: use the command 'hdbcheck', with parameters `--remote_execution=ssh` and `--scope=system`
6565# no: use the command `hdblcm --action=check_installation`
66- sap_hana_install_use_hdbcheck : yes
66+ sap_hana_install_use_hdbcheck : true
6767
68- # If the following variable is set to `no `, the role will attempt to install SAP HANA even if there is already a sidadm user.
69- # Default is `yes `.
70- sap_hana_install_check_sidadm_user : yes
68+ # If the following variable is set to `false `, the role will attempt to install SAP HANA even if there is already a sidadm user.
69+ # Default is `true `.
70+ sap_hana_install_check_sidadm_user : true
7171
72- # If the following variable is undefined or set to `yes `, the role will perform a fresh SAP HANA installation.
73- # If set to `no `, additional hosts as specified by variable sap_hana_install_addhosts will be added to
72+ # If the following variable is undefined or set to `true `, the role will perform a fresh SAP HANA installation.
73+ # If set to `false `, additional hosts as specified by variable sap_hana_install_addhosts will be added to
7474# an existing HANA system.
75- sap_hana_install_new_system : yes
75+ sap_hana_install_new_system : true
7676
7777# The first tenant database is using a port range not within the range of the ports of additional tenant databases.
7878# In case this is not desired, you can set the following parameter to `yes` to recreate the initial tenant database.
79- sap_hana_install_recreate_tenant_database : no
79+ sap_hana_install_recreate_tenant_database : false
8080
8181# The following parameter controls if the log_mode should be set to overwrite following the installation of the database.
8282# log_mode overwrite is useful in non-prod testing as log backups are not created and disk use is kept low
8383# However, log_mode overwrite disabled to ability to do point-in-time restores and is not supported in production
84- sap_hana_set_log_mode_overwrite : no
84+ sap_hana_install_set_log_mode_overwrite : false
8585
8686# ###############
8787# Parameters for hdblcm:
@@ -91,8 +91,8 @@ sap_hana_set_log_mode_overwrite: no
9191sap_hana_install_components : ' all'
9292
9393# Pass some extra arguments to hdblcm, see some examples below.
94- # sap_hana_install_hdblcm_extraargs: '--verify_signature'
95- # sap_hana_install_hdblcm_extraargs: '--ignore=check_diskspace,check_min_mem'
94+ # sap_hana_install_hdblcm_extraargs: '--verify_signature'
95+ # sap_hana_install_hdblcm_extraargs: '--ignore=check_diskspace,check_min_mem'
9696
9797# Instance details
9898sap_hana_install_sid :
@@ -105,25 +105,25 @@ sap_hana_install_restrict_max_mem: 'n'
105105sap_hana_install_max_mem :
106106
107107# hdblcm will use default ids if blank
108- sap_hana_install_userid :
108+ sap_hana_install_userid :
109109sap_hana_install_groupid :
110110
111111# Passwords
112112# Setting master password to 'y' will use that master password for all passwords - recommended
113113sap_hana_install_use_master_password : ' y'
114114# Set one or more of the following password variables in your playbook or inventory.
115- # sap_hana_install_master_password:
116- # sap_hana_install_sidadm_password:
117- # sap_hana_install_db_system_password:
118- # sap_hana_install_lss_user_password:
119- # sap_hana_install_lss_backup_password:
120- # sap_hana_install_ase_user_password:
121- # sap_hana_install_root_password:
122- # sap_hana_install_sapadm_password:
123- # sap_hana_install_xs_org_password:
115+ # sap_hana_install_master_password:
116+ # sap_hana_install_sidadm_password:
117+ # sap_hana_install_db_system_password:
118+ # sap_hana_install_lss_user_password:
119+ # sap_hana_install_lss_backup_password:
120+ # sap_hana_install_ase_user_password:
121+ # sap_hana_install_root_password:
122+ # sap_hana_install_sapadm_password:
123+ # sap_hana_install_xs_org_password:
124124
125125# Optional steps
126- sap_hana_install_update_firewall : no
126+ sap_hana_install_update_firewall : false
127127
128128# List of firewall ports for SAP HANA. Note: The structure of the variable is compatible
129129# with the variable `firewall` of Linux System Role `firewall`.
@@ -149,16 +149,16 @@ sap_hana_install_firewall:
149149 state : ' enabled' }
150150
151151# The following variable is no longer used. Setting /etc/hosts entries is done in role sap_general_preconfigure.
152- # sap_hana_install_update_etchosts: yes
152+ # sap_hana_install_update_etchosts: yes
153153
154154# Post install parameters
155155sap_hana_install_hdbuserstore_key : ' HDB_SYSTEMDB'
156156sap_hana_install_nw_input_location : ' /tmp'
157157
158158# License
159- sap_hana_install_apply_license : no
160- # sap_hana_install_license_path:
161- # sap_hana_install_license_file_name:
159+ sap_hana_install_apply_license : false
160+ # sap_hana_install_license_path:
161+ # sap_hana_install_license_file_name:
162162
163163# Misc
164164
@@ -178,7 +178,7 @@ sap_hana_install_create_initial_tenant: 'y'
178178# hosts to an existing HANA system.
179179# Corresponding hdblcm parameter: addhosts
180180# Example:
181- # sap_hana_install_addhosts: 'host2:role=worker,host3:role=worker:group=g02,host4:role=standby:group=g02'
181+ # sap_hana_install_addhosts: 'host2:role=worker,host3:role=worker:group=g02,host4:role=standby:group=g02'
182182
183183# The hostname is set by 'hdblcm --dump_configfile_template' during the preinstall phase but can also
184184# be set to a different value in your playbook or hostvars:
0 commit comments