Server IP : 85.214.239.14 / Your IP : 3.129.250.41 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/ansible_collections/infinidat/infinibox/plugins/modules/ |
Upload File : |
#!/usr/bin/python # -*- coding: utf-8 -*- # Copyright: (c) 2022, Infinidat <info@infinidat.com> # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import (absolute_import, division, print_function) __metaclass__ = type DOCUMENTATION = r''' --- module: infini_host version_added: '2.3.0' short_description: Create, Delete or Modify Hosts on Infinibox description: - This module creates, deletes or modifies hosts on Infinibox. author: David Ohlemacher (@ohlemacher) options: name: description: - Host Name required: true state: description: - Creates/Modifies Host when present or removes when absent required: false default: present choices: [ "stat", "present", "absent" ] extends_documentation_fragment: - infinibox ''' EXAMPLES = r''' - name: Create new host infini_host: name: foo.example.com user: admin password: secret system: ibox001 ''' # RETURN = r''' # ''' from ansible.module_utils.basic import AnsibleModule, missing_required_lib import traceback from infi.dtypes.iqn import make_iscsi_name from ansible_collections.infinidat.infinibox.plugins.module_utils.infinibox import ( HAS_INFINISDK, api_wrapper, infinibox_argument_spec, get_system, get_host, unixMillisecondsToDate, merge_two_dicts, ) @api_wrapper def create_host(module, system): changed = True if not module.check_mode: host = system.hosts.create(name=module.params['name']) return changed @api_wrapper def update_host(module, host): changed = False return changed @api_wrapper def delete_host(module, host): changed = True if not module.check_mode: # May raise APICommandFailed if mapped, etc. host.delete() return changed def get_sys_host(module): system = get_system(module) host = get_host(module, system) return (system, host) def get_host_fields(host): fields = host.get_fields(from_cache=True, raw_value=True) created_at, created_at_timezone = unixMillisecondsToDate(fields.get('created_at', None)) field_dict = dict( created_at=created_at, created_at_timezone=created_at_timezone, id=host.id, iqns=[], luns=[], ports=[], wwns=[], ) luns = host.get_luns() for lun in luns: field_dict['luns'].append({'lun_id': lun.id, 'lun_volume_id': lun.volume.id, 'lun_volume_name': lun.volume.get_name(), }) ports = host.get_ports() for port in ports: if str(type(port)) == "<class 'infi.dtypes.wwn.WWN'>": field_dict['wwns'].append(str(port)) if str(type(port)) == "<class 'infi.dtypes.iqn.IQN'>": field_dict['iqns'].append(str(port)) return field_dict def handle_stat(module): system, host = get_sys_host(module) host_name = module.params["name"] if not host: module.fail_json(msg='Host {0} not found'.format(host_name)) field_dict = get_host_fields(host) result = dict( changed=False, msg='Host stat found' ) result = merge_two_dicts(result, field_dict) module.exit_json(**result) def handle_present(module): system, host = get_sys_host(module) host_name = module.params["name"] if not host: changed = create_host(module, system) msg = 'Host {0} created'.format(host_name) module.exit_json(changed=changed, msg=msg) else: changed = update_host(module, host) msg = 'Host {0} updated'.format(host_name) module.exit_json(changed=changed, msg=msg) def handle_absent(module): system, host = get_sys_host(module) host_name = module.params["name"] if not host: msg = "Host {0} already absent".format(host_name) module.exit_json(changed=False, msg=msg) else: changed = delete_host(module, host) msg = "Host {0} removed".format(host_name) module.exit_json(changed=changed, msg=msg) def execute_state(module): state = module.params['state'] try: if state == 'stat': handle_stat(module) elif state == 'present': handle_present(module) elif state == 'absent': handle_absent(module) else: module.fail_json(msg='Internal handler error. Invalid state: {0}'.format(state)) finally: system = get_system(module) system.logout() def main(): argument_spec = infinibox_argument_spec() argument_spec.update( dict( name=dict(required=True), state=dict(default='present', choices=['stat', 'present', 'absent']), ) ) module = AnsibleModule(argument_spec, supports_check_mode=True) if not HAS_INFINISDK: module.fail_json(msg=missing_required_lib('infinisdk')) execute_state(module) if __name__ == '__main__': main()