File tree Expand file tree Collapse file tree 8 files changed +11
-2
lines changed Expand file tree Collapse file tree 8 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ Changelog of Pythia:
33Version 2.3.5
44 - New Feature #34: using the shell command with sqlplus has been replaced by the oracle_sql
55 module
6+ - Fixed #38: Molecule tests now run again by disabling SELinux check when running molecule
7+ and updating the meta/main.yml with the needed Ansible Galaxy info.
68
79Version 2.3.0
810 - New Feature #25: You can now specify a list of instance parameters which will get set
Original file line number Diff line number Diff line change 11galaxy_info :
2- author : Philip Haberkern - thedatabaseme
2+ author : thedatabaseme
33 description : Pythia is a Role for ansible that helps you to automate Oracle Database Installation, Configuration and Patching tasks.
4+ role_name : pythia
45 company :
56
67 # If the issue tracker for your role is not on github, uncomment the
Original file line number Diff line number Diff line change 99 runinstaller_parameters : " -ignoreInternalDriverError"
1010 install_patch : " 33239276"
1111 emexpress : NONE
12+ molecule_run : true
1213
1314 roles :
1415 - pythia
Original file line number Diff line number Diff line change 77 oracle_sid : ORA21
88 sga_max_size : 2
99 emexpress : NONE
10+ molecule_run : true
1011
1112 roles :
1213 - pythia
Original file line number Diff line number Diff line change 55 vars :
66 oracle_version : 21EE
77 install_patch : 33239276
8+ molecule_run : true
89
910 roles :
1011 - pythia
Original file line number Diff line number Diff line change 77 oracle_sid : ORA21
88 sga_max_size : 2
99 runinstaller_parameters : " -ignoreInternalDriverError"
10+ molecule_run : true
1011
1112 roles :
1213 - pythia
Original file line number Diff line number Diff line change 99 runinstaller_parameters : " -ignoreInternalDriverError"
1010 install_patch : " 33239276"
1111 emexpress : NONE
12+ molecule_run : true
1213
1314 roles :
1415 - pythia
Original file line number Diff line number Diff line change 459459 changed_when : false
460460 register : check_selinux_configuration
461461 become : true
462+ when : (not molecule_run | bool | default(false))
462463 tags :
463464 - autostart
464465 - db
487488 state : " {{ selinux_desired_state }}"
488489 register : selinux_configuration_change
489490 become : true
490- when : ' ("SELinux state changed" in check_selinux_configuration.msg)'
491+ when : ' ((not molecule_run | bool | default(false)) and ( "SELinux state changed" in check_selinux_configuration.msg) )'
491492 tags :
492493 - autostart
493494 - db
You can’t perform that action at this time.
0 commit comments