91062d458f10ef333db7c062c8261570c6fcbdf2
This commit adds a IPA hardware manager for exposing functions specific to Proliant hardware in Ironic Python Agent. Co-Authored-By: Ramakrishnan G <rameshg87@gmail.com> Implements: blueprint ipa-hardware-manager Change-Id: I286fcc4e88934b4a425e57f5b676d6cbd64690c4
============== 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%