enlightenalpha
enlightenalpha
Hello all. I have a project where I'm pulling Hadoop cluster configs into a dict then dumping as a JSON file that will be used to apply to new clusters...
I have a HOCON file which contains many key values similar to the following: `value: "{\"critical\":\"0.00\",\"warning\":\"99.99\"}"` When trying to parse, I receive the following exception: > Virtualenvs/cloudera/lib/python2.7/site-packages/pyparsing.pyc > > in...
We have a need to define custom settings for some default tablespaces. For example: ` tablespaces: - { name: sysaux, size: 10M, bigfile: True, autoextend: true , next: 10M, maxsize:...
Role: orahost Task: main.yml Module: Yum Error: "msg": "Error accessing repos: Error getting repository data for , repository not found" Ansible 2.7 introduced the option to define enablerepo and disablerepo...
Branch: Master Target OS: CentOS Linux release 7.5.1804 Role: roles/orahost/tasks/main.yml Task: name: filesystem | Create partition and pv Problem: Task fails due to user confirmation prompt. Adding -s resolves: `shell:...
/roles/cxoracle/tasks/main.yml We needed to add a more forgiving umask for the cx_oracle install task, otherwise only the root user can import the module. pip: name=cx_oracle state=present extra_args="{{ extra_args }}" **umask=0022**
To significantly decrease deployment times, we imbed the Oracle installation zip in our Azure image and version the image based on the DB version. It would be helpful to account...
Location: roles/orahost/defaults/main.yml asmlibsupport_rpm is based on conditional using ansible_distribution == 'RedHat' This fails on CentOS. We needed to replace with: ansible_distribution_file_variety == 'RedHat'