oravirt / ansible-oracle-modules

Oracle modules for Ansible
MIT License
214 stars 160 forks source link

oracle_db: domain issue #159

Open hatakashi opened 3 years ago

hatakashi commented 3 years ago

Missing comma in oracle_db breaks initparams when using the domain option.

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

should be

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