oravirt/ansible-oracle-modules

oracle_db: domain issue

Opened this issue · 0 comments

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