Skip to content

Commit fc8682b

Browse files
committed
oraswgi_install: Removed default password from default_gipass
1 parent e5b6d2f commit fc8682b

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
breaking_changes:
3+
- "oraswgi_install: Removed default password from default_gipass (oravirt#409)"
4+
security_fixes:
5+
- "oraswgi_install: Removed default password from default_gipass (oravirt#409)"

roles/oraswgi_install/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,16 @@ default_dbpass: '{% if item.0.oracle_db_passwd is defined %}{{ item.0.oracle_db_
6565
6666
### default_gipass
6767
68-
Default password for Grid-Infrastructure.
68+
Default password for Grid-Infrastructure and ASM-Users.
69+
70+
Important
71+
72+
It is mandatory to set this variable in your inventory!
6973
7074
#### Default value
7175
7276
```YAML
73-
default_gipass: "{{ oracle_password | default('') }}"
77+
default_gipass: ''
7478
```
7579
7680
### endoracle_scan_port

roles/oraswgi_install/defaults/main.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,13 @@
77
gi_ignoreprereq: false
88

99
# @var default_gipass:description: >
10-
# Default password for Grid-Infrastructure.
10+
# Default password for Grid-Infrastructure and ASM-Users.
1111
#
12+
# Important
13+
#
14+
# It is mandatory to set this variable in your inventory!
1215
# @end
13-
default_gipass: "{{ oracle_password | default('') }}"
16+
default_gipass: ""
1417

1518
# The check for the old passwords are there for backwards compatibility and only temporary, will be removed
1619
default_dbpass: "{% if item.0.oracle_db_passwd is defined %}{{ item.0.oracle_db_passwd }}{% else %}Oracle123{% endif %}"

0 commit comments

Comments
 (0)