Skip to content

Commit b4e0f1a

Browse files
committed
oradb_manage_tablespace: added missing defaults for password
1 parent 27c1063 commit b4e0f1a

File tree

5 files changed

+27
-2
lines changed

5 files changed

+27
-2
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ opitzconsulting.ansible_oracle Release Notes
55
.. contents:: Topics
66

77

8+
v3.5.1
9+
======
10+
11+
Bugfixes
12+
--------
13+
14+
- oradb_manage_tablespace: added missing defaults for password (oravirt#323)
15+
816
v3.5.0
917
======
1018

changelogs/.plugin-cache.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ plugins:
1414
shell: {}
1515
strategy: {}
1616
vars: {}
17-
version: 3.5.0
17+
version: 3.5.1

changelogs/changelog.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,3 +245,10 @@ releases:
245245
- pam_limits_config.yml
246246
- release-info.yml
247247
release_date: '2023-02-02'
248+
3.5.1:
249+
changes:
250+
bugfixes:
251+
- 'oradb_manage_tablespace: added missing defaults for password (oravirt#323)'
252+
fragments:
253+
- tablespace.yml
254+
release_date: '2023-02-16'

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
namespace: opitzconsulting
33
name: ansible_oracle
44
description: "This is the collection of ansible-oracle from https://github.com/oravirt/ansible-oracle"
5-
version: 3.5.0
5+
version: 3.5.1
66
repository: https://github.com/oravirt/ansible-oracle.git
77
readme: README.md
88
authors:

roles/oradb_manage_tablespace/defaults/main.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@ user_pdb_password: "{% if dbpasswords is defined and dbpasswords[item.0.cdb] is
1313
{%- endif%}"
1414
# noqa yaml
1515

16+
db_password_cdb: "{% if dbpasswords is defined and dbpasswords[item.0.oracle_db_name] is defined and dbpasswords[item.0.oracle_db_name][db_user] is defined %}{{ dbpasswords[item.0.oracle_db_name][db_user] }}
17+
{%- else %}{{ default_dbpass }}
18+
{%- endif %}"
19+
# noqa yaml
20+
21+
db_password_pdb: "{% if dbpasswords is defined and dbpasswords[item.0.cdb] is defined and dbpasswords[item.0.cdb][db_user] is defined %}{{ dbpasswords[item.0.cdb][db_user] }}
22+
{%- else %}{{ default_dbpass }}
23+
{%- endif%}"
24+
# noqa yaml
25+
1626
db_service_name: "{% if item.0 is defined %}
1727
{%- if item.0.oracle_db_unique_name is defined %}{{ item.0.oracle_db_unique_name }}
1828
{%- elif item.0.oracle_db_instance_name is defined %}{{ item.0.oracle_db_instance_name }}

0 commit comments

Comments
 (0)