Utility library for managing HP Proliant servers (used in Ironic iLO drivers).
Go to file
Ramakrishnan G 68bfa97b55 RIS: Check if virtual media is attached before ejecting
This commit changes eject_virtual_media in RIS to
check if virtual media is attached before trying to
eject it. This will no longer raise exception if
virtual media is not attached.

Change-Id: Id764ebe437be3f63a0957aa15e60417478df8d34
2015-07-08 02:29:22 -07:00
doc Add hpssa module to proliantutils 2015-02-13 09:36:26 +00:00
proliantutils RIS: Check if virtual media is attached before ejecting 2015-07-08 02:29:22 -07:00
.gitignore Add hpssa module to proliantutils 2015-02-13 09:36:26 +00:00
.testr.conf Add tox for proliantutils module 2015-02-03 03:14:24 -08:00
AUTHORS Fix minor space issues in ribcl module 2015-02-03 01:31:09 -08:00
ChangeLog Add tox for proliantutils module 2015-02-03 03:14:24 -08:00
LICENSE Initial commit 2014-05-26 03:40:34 -07:00
README.md Add support for pbr 2015-02-03 01:27:30 -08:00
README.rst Add support for pbr 2015-02-03 01:27:30 -08:00
requirements.txt Add support for certificate based authentication 2015-06-16 22:34:53 -07:00
setup.cfg Add Proliant Hardware Manager for IPA 2015-02-20 15:58:01 +05:30
setup.py Add support for pbr 2015-02-03 01:27:30 -08:00
test-requirements.txt ILO: Add unit tests for ris.RISOperations._rest_op 2015-03-20 06:53:36 +00:00
tox.ini Fix gate failures 2015-06-09 23:01:39 -07:00

README.md

============== 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()