pyghmi 1.6.1__tar.gz → 1.6.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyghmi-1.6.1 → pyghmi-1.6.3}/AUTHORS +1 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/ChangeLog +14 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/PKG-INFO +1 -1
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/private/session.py +4 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/redfish/oem/generic.py +1 -0
- pyghmi-1.6.3/pyghmi/redfish/oem/lenovo/xcc3.py +1168 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/util/webclient.py +7 -6
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi.egg-info/PKG-INFO +1 -1
- pyghmi-1.6.3/pyghmi.egg-info/pbr.json +1 -0
- pyghmi-1.6.1/pyghmi/redfish/oem/lenovo/xcc3.py +0 -484
- pyghmi-1.6.1/pyghmi.egg-info/pbr.json +0 -1
- {pyghmi-1.6.1 → pyghmi-1.6.3}/.coveragerc +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/.stestr.conf +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/CONTRIBUTING.rst +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/LICENSE +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/MANIFEST.in +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/README +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/README.md +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/builddeb +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/buildrpm +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/doc/requirements.txt +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/doc/source/conf.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/doc/source/contributor/index.rst +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/doc/source/index.rst +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/doc/source/install/index.rst +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/doc/source/reference/index.rst +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/makesetup +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/playbooks/legacy/tempest-devstack-ironic-pxe_ipmitool-pyghmi-src/post.yaml +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/playbooks/legacy/tempest-devstack-ironic-pxe_ipmitool-pyghmi-src/run.yaml +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/py27-constraints.txt +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/__init__.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/cmd/__init__.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/cmd/fakebmc.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/cmd/pyghmicons.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/cmd/pyghmiutil.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/cmd/virshbmc.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/constants.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/exceptions.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/__init__.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/bmc.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/command.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/console.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/events.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/fru.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/oem/__init__.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/oem/generic.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/oem/lenovo/__init__.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/oem/lenovo/config.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/oem/lenovo/cpu.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/oem/lenovo/dimm.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/oem/lenovo/drive.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/oem/lenovo/energy.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/oem/lenovo/firmware.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/oem/lenovo/handler.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/oem/lenovo/imm.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/oem/lenovo/inventory.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/oem/lenovo/nextscale.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/oem/lenovo/pci.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/oem/lenovo/psu.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/oem/lenovo/raid_controller.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/oem/lenovo/raid_drive.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/oem/lookup.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/private/__init__.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/private/constants.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/private/localsession.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/private/serversession.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/private/simplesession.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/private/spd.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/private/util.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/ipmi/sdr.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/media.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/redfish/__init__.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/redfish/command.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/redfish/oem/__init__.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/redfish/oem/dell/__init__.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/redfish/oem/dell/idrac.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/redfish/oem/dell/main.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/redfish/oem/lenovo/__init__.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/redfish/oem/lenovo/main.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/redfish/oem/lenovo/smm3.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/redfish/oem/lenovo/tsma.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/redfish/oem/lenovo/xcc.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/redfish/oem/lookup.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/storage.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/tests/__init__.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/tests/unit/__init__.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/tests/unit/base.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/tests/unit/ipmi/__init__.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/tests/unit/ipmi/test_sdr.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/util/__init__.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/util/parse.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi/version.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi.egg-info/SOURCES.txt +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi.egg-info/dependency_links.txt +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi.egg-info/entry_points.txt +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi.egg-info/not-zip-safe +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi.egg-info/requires.txt +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/pyghmi.egg-info/top_level.txt +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/python-pyghmi.spec +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/python-pyghmi.spec.tmpl +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/requirements.txt +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/setup.cfg +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/setup.py +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/setup.py.tmpl +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/test-requirements.txt +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/tox.ini +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/wheezy.patch +0 -0
- {pyghmi-1.6.1 → pyghmi-1.6.3}/zuul.d/project.yaml +0 -0
@@ -1,6 +1,7 @@
|
|
1
1
|
Akira Yoshiyama <akirayoshiyama@gmail.com>
|
2
2
|
Allan Vidal <avidal@lenovo.com>
|
3
3
|
Andreas Jaeger <aj@suse.com>
|
4
|
+
Andrei Machedon <amachedon@lenovo.com>
|
4
5
|
Christian Arnold <the-fr3ak@gmx.net>
|
5
6
|
Connor Reed <conman2305@hotmail.com>
|
6
7
|
Daniel Speichert <Daniel_Speichert@comcast.com>
|
@@ -1,6 +1,20 @@
|
|
1
1
|
CHANGES
|
2
2
|
=======
|
3
3
|
|
4
|
+
1.6.3
|
5
|
+
-----
|
6
|
+
|
7
|
+
* Fixes to XCC3 module
|
8
|
+
* Randomize boundary
|
9
|
+
* Increase buffer size
|
10
|
+
|
11
|
+
1.6.2
|
12
|
+
-----
|
13
|
+
|
14
|
+
* Translate non-XCC3 volume policies values to Redfish
|
15
|
+
* Rework the XCC3 changes
|
16
|
+
* Add support for XCC3
|
17
|
+
|
4
18
|
1.6.1
|
5
19
|
-----
|
6
20
|
|
@@ -375,6 +375,10 @@ class Session(object):
|
|
375
375
|
tmpsocket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
376
376
|
else:
|
377
377
|
tmpsocket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
378
|
+
try:
|
379
|
+
tmpsocket.setsockopt(socket.SOL_SOCKET, socket.SO_RCVBUF, 16777216)
|
380
|
+
except Exception:
|
381
|
+
pass
|
378
382
|
if server is None:
|
379
383
|
# Rather than wait until send() to bind, bind now so that we have
|
380
384
|
# a port number allocated no matter what
|