Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Various small fixes to boolean usage and defaults #1250

Merged
merged 1 commit into from
Oct 8, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 9 additions & 5 deletions library/debug
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,17 @@ def main():
)
)

if module.params['fail'] in BOOLEANS_TRUE and module.params['rc'] == 0:
module.params['rc'] = 1
fail = module.boolean(module.params.get('fail'))
msg = module.params.get('msg')
rc = module.params.get('rc')

if module.params['fail'] in BOOLEANS_TRUE:
module.fail_json(rc=module.params['rc'], msg=module.params['msg'])
if fail and rc == 0:
rc = 1

if fail:
module.fail_json(rc=rc, msg=msg)
else:
module.exit_json(msg=module.params['msg'])
module.exit_json(msg=msg)

# this is magic, see lib/ansible/module_common.py
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
Expand Down
47 changes: 27 additions & 20 deletions library/hpilo_boot
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ options:
C(protocol://username:password@hostname:port/filename)
- protocol is either C(http) or C(https)
- username:password is optional
- port is optional
- port is optional
required: false
state:
description:
Expand Down Expand Up @@ -111,52 +111,59 @@ def main():
login = dict(default='Administrator'),
password = dict(default='admin'),
match = dict(default=None),
media = dict(choices=['cdrom', 'floppy', 'hdd', 'network', 'normal', 'usb']),
media = dict(default=None, choices=['cdrom', 'floppy', 'hdd', 'network', 'normal', 'usb']),
image = dict(default=None),
state = dict(required=True, default='boot_once', choices=['boot_always', 'boot_once', 'connect', 'disconnect', 'no_boot']),
force = dict(default=True, choices=BOOLEANS),
state = dict(default='boot_once', choices=['boot_always', 'boot_once', 'connect', 'disconnect', 'no_boot']),
force = dict(default='no', choices=BOOLEANS),
)
)

host = module.params['host']
login = module.params['login']
password = module.params['password']
force = module.params['force']
host = module.params.get('host')
login = module.params.get('login')
password = module.params.get('password')
match = module.params.get('match')
media = module.params.get('media')
image = module.params.get('image')
state = module.params.get('state')
force = module.boolean(module.params.get('force'))

ilo = hpilo.Ilo(host, login=login, password=password)

# If match=string is provided, only reboot server if iLO name matches 'string'
if module.params['match'] != None:
if match != None:
try:
server_name = ilo.get_server_name()
except Exception, e:
module.fail_json(rc=1, msg='Failed to connect to %s: %s' % (host, e.message))

if not server_name.lower().startswith(module.params['match'].lower()):
module.fail_json(rc=1, msg='The iLO server name \'%s\' does not match \'%s\'' % (server_name, module.params['match']))
if not server_name.lower().startswith(match.lower()):
module.fail_json(rc=1, msg='The iLO server name \'%s\' does not match \'%s\'' % (server_name, match))

if module.params['media']:
if media:

### FIXME: In the below case iLO fails for a short period of time due to the server rebooting
# File "/usr/lib/python2.6/site-packages/hpilo.py", line 381, in _parse_message
# raise IloError("Error communicating with iLO: %s" % child.get('MESSAGE'))
#hpilo.IloError: Error communicating with iLO: Problem manipulating EV

ilo.set_one_time_boot(module.params['media'])
ilo.set_one_time_boot(media)

# TODO: Verify if image URL exists/works
if module.params['image']:
ilo.insert_virtual_media(module.params['media'], module.params['image'])
if image:
ilo.insert_virtual_media(media, image)

if module.params['media'] == 'cdrom':
ilo.set_vm_status('cdrom', module.params['state'], True)
if media == 'cdrom':
ilo.set_vm_status('cdrom', state, True)
status = ilo.get_vm_status()
elif module.params['media'] == 'floppy':
ilo.set_vf_status(module.params['state'], True)
elif media == 'floppy':
ilo.set_vf_status(state, True)
status = ilo.get_vf_status()
elif media == 'usb':
ilo.set_vf_status(state, True)
status = ilo.get_vf_status()

# Only perform a boot when state is boot_once or boot_always, or in case we want to force a reboot
if module.params['state'] in ('boot_once', 'boot_always') or force:
if state in ('boot_once', 'boot_always') or force:

power_status = ilo.get_host_power_status()

Expand Down
13 changes: 7 additions & 6 deletions library/hpilo_facts
Original file line number Diff line number Diff line change
Expand Up @@ -106,21 +106,22 @@ def main():
)
)

host = module.params['host']
login = module.params['login']
password = module.params['password']
host = module.params('host')
login = module.params('login')
password = module.params('password')
match = module.params.get('match')

ilo = hpilo.Ilo(host, login=login, password=password)

# If match=string is provided, only reboot server if iLO name matches 'string'
if module.params['match'] != None:
if match != None:
try:
server_name = ilo.get_server_name()
except Exception, e:
module.fail_json(rc=1, msg='Failed to connect to %s: %s' % (host, e.message))

if not server_name.lower().startswith(module.params['match'].lower()):
module.fail_json(rc=1, msg='The iLO server name \'%s\' does not match \'%s\'' % (server_name, module.params['match']))
if not server_name.lower().startswith(match.lower()):
module.fail_json(rc=1, msg='The iLO server name \'%s\' does not match \'%s\'' % (server_name, match))

# TODO: Count number of CPUs, DIMMs and total memory
data = ilo.get_host_data()
Expand Down
8 changes: 4 additions & 4 deletions library/vsphere_facts
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ def main():
)
)

host = module.params['host']
login = module.params['login']
password = module.params['password']
guest = module.params['guest']
host = module.params.get('host')
login = module.params.get('login')
password = module.params.get('password')
guest = module.params.get('guest')

server = pysphere.VIServer()
try:
Expand Down