1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #4280 from angstwad/devel

Use set_setting in rax.py inventory module
This commit is contained in:
Michael DeHaan 2013-09-27 20:19:43 -07:00
commit 05b3aaa39b

View file

@ -70,9 +70,9 @@ notes:
requirements: [ "pyrax" ]
examples:
- description: List server instances
code: RAX_CREDS=~/.raxpub RAX_REGION=ORD rax.py --list
code: RAX_CREDS_FILE=~/.raxpub RAX_REGION=ORD rax.py --list
- description: List server instance properties
code: RAX_CREDS=~/.raxpub RAX_REGION=ORD rax.py --host <HOST_IP>
code: RAX_CREDS_FILE=~/.raxpub RAX_REGION=ORD rax.py --host <HOST_IP>
'''
import sys
@ -112,6 +112,8 @@ except KeyError, e:
sys.stderr.write('Unable to load %s\n' % e.message)
sys.exit(1)
pyrax.set_setting('identity_type', 'rackspace')
try:
pyrax.set_credential_file(os.path.expanduser(creds_file),
region=region)