oravirt / ansible-oracle-modules

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

oracle_user: wanted_list and curr_defaults are not compared case insensitive #162

Closed jschampera closed 3 years ago

jschampera commented 3 years ago

While debugging why a given user was changed on every run, I took a look into oracle_user.

wanted_list and curr_defaults are not compared case-insensitive (where applicable, e.g. tablespace names).

My current workaround is to use lowercase tablespace names in the yaml files, but it should be corrected.

(probably other modules are affected aswell, I didn't check/I'm not that far in my adventure :-) )

oravirt commented 3 years ago

Good catch! Weird that no-one had run into this earlier. I guess everyone uses lowercase ;-)

jschampera commented 3 years ago

Like a charm! Thanks!