Skip to content

Commit

Permalink
fixed db_domain handling
Browse files Browse the repository at this point in the history
  • Loading branch information
bartowl authored and bartowl committed Apr 15, 2021
1 parent e2c63c2 commit 7ec00e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oracle_db
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ def create_db (module, msg, oracle_home, sys_password, system_password, dbsnmp_p
initparam += 'db_name=%s,db_unique_name=%s,' % (db_name,db_unique_name)

if domain is not None:
initparam += 'db_domain=%s' % domain
initparam += 'db_domain=%s,' % domain

if initparams is not None:
paramslist = ",".join(initparams)
Expand Down

0 comments on commit 7ec00e7

Please sign in to comment.