fe5bcccfe242ae14e27d9e6b0320778b5ce39821
This commit introduces the hpssa module. The module has the ability to parse the current raid configuration and hardware details of the server. It also has a manager which has ability to create/delete/get raid configuration. For now, create is limited to machine-dependent configuration. Each logical disk to be created will require the controller and physical disks to be used. Change-Id: Ib58620d8d4f47eb55c55c6abb5d3b294623205bf Implements: blueprint hpssa-support
============== Proliant Utils
Proliant Management Tools provides python libraries for interfacing and managing various devices(like iLO) present in HP Proliant Servers.
Currently, this module offers a library to interface to iLO4 using RIBCL.
#!/usr/bin/python
from proliantutils.ilo import ribcl
ilo_client = ribcl.IloClient('1.2.3.4', 'Administrator', 'password')
print ilo_client.get_host_power_status()
Description
Languages
Python
100%