File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change 271
271
environment : # needed as pg_config isn't in PATH by default
272
272
PATH : " {{ ansible_env.PATH }}:/usr/pgsql-{{ postgres_version }}/bin"
273
273
274
+ - name : Add Oracle yum repository
275
+ yum_repository :
276
+ name : oracle-repository
277
+ description : oracle repository
278
+ baseurl : https://yum.oracle.com/repo/OracleLinux/OL7/oracle/instantclient21/x86_64/
279
+ # https://linux.oracle.com/security/gpg/
280
+ gpgkey : https://yum.oracle.com/RPM-GPG-KEY-oracle-ol7
281
+ when : install_billing_validation_package
282
+
283
+ - name : Install Oracle dependency for Python package for validating LBL billing IDs
284
+ yum :
285
+ name :
286
+ - oracle-instantclient-basic.x86_64
287
+ state : present
288
+ when : install_billing_validation_package
289
+
274
290
# TODO: If this raises an error, the token is exposed in stderr.
275
291
- name : Install the Python package for validating LBL billing IDs
276
292
pip :
You can’t perform that action at this time.
0 commit comments