xoanmi / ansible-module-infoblox

Awesome infobox module for ansible
GNU General Public License v3.0
38 stars 25 forks source link

How to install...??? #9

Closed beggles closed 7 years ago

beggles commented 7 years ago

Apologies if this is obvious, though I am new to Ansible and am keen to understand the process for installing your InfoBlox module. Appreciate if you could provide instructions for a newbie such as myself.

Thanks in advance.

xoanmi commented 7 years ago

Hi @beggles ,

You could copy the infoblox.py file into the ansible modules extras path (something like this: usr/lib/python2.7/site-packages/ansible/modules/extras). You could also copy the python into a library folder in a role:

ansible/roles/your_role/ ├── defaults │   └── main.yml ├── handlers │   └── main.yml ├── library │   └── infoblox.py ├── meta │   └── main.yml ├── README.md ├── tasks │   ├── main.yml ├── tests │   ├── inventory │   └── test.yml └── vars └── main.yml