mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
832dd55144
* sanity: Add future boilerplate Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com> * Module Utils Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com> * Scripts Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com> * sanity: Add future boilerplate * Tests Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com> * CI failure Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
56 lines
2.1 KiB
Python
56 lines
2.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
# Dell EMC OpenManage Ansible Modules
|
|
# Version 1.0
|
|
# Copyright (C) 2018 Dell Inc.
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# All rights reserved. Dell, EMC, and other trademarks are trademarks of Dell Inc. or its subsidiaries.
|
|
# Other trademarks may be trademarks of their respective owners.
|
|
#
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
try:
|
|
from omsdk.sdkinfra import sdkinfra
|
|
from omsdk.sdkcreds import UserCredentials
|
|
from omsdk.sdkfile import FileOnShare, file_share_manager
|
|
from omsdk.sdkprotopref import ProtoPreference, ProtocolEnum
|
|
from omsdk.http.sdkwsmanbase import WsManOptions
|
|
HAS_OMSDK = True
|
|
except ImportError:
|
|
HAS_OMSDK = False
|
|
|
|
|
|
class iDRACConnection:
|
|
|
|
def __init__(self, module_params):
|
|
if not HAS_OMSDK:
|
|
raise ImportError("Dell EMC OMSDK library is required for this module")
|
|
self.idrac_ip = module_params['idrac_ip']
|
|
self.idrac_user = module_params['idrac_user']
|
|
self.idrac_pwd = module_params['idrac_password']
|
|
self.idrac_port = module_params['idrac_port']
|
|
if not all((self.idrac_ip, self.idrac_user, self.idrac_pwd)):
|
|
raise ValueError("hostname, username and password required")
|
|
self.handle = None
|
|
self.creds = UserCredentials(self.idrac_user, self.idrac_pwd)
|
|
self.pOp = WsManOptions(port=self.idrac_port)
|
|
self.sdk = sdkinfra()
|
|
if self.sdk is None:
|
|
msg = "Could not initialize iDRAC drivers."
|
|
raise RuntimeError(msg)
|
|
|
|
def __enter__(self):
|
|
self.sdk.importPath()
|
|
self.handle = self.sdk.get_driver(self.sdk.driver_enum.iDRAC, self.idrac_ip, self.creds, pOptions=self.pOp)
|
|
if self.handle is None:
|
|
msg = "Could not find device driver for iDRAC with IP Address: {0}".format(self.idrac_ip)
|
|
raise RuntimeError(msg)
|
|
return self.handle
|
|
|
|
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
self.handle.disconnect()
|
|
return False
|