Rename to pyghmi

It has been expressed as a concern that 'ipmi' is too generic a name.
Additionally, it is also the case that non-ipmi capability is likely
to be incorporated as it goes along (e.g. Enclosure management and
virtual media are frequently not IPMI based).

Move existing content under the 'pyghmi' namespace.  pyghmi stands for
'python general hardware management infrastructure' and is pronounced
'pygmy'

Change-Id: Ib549a9f5b7dd549c7dc5ddbab251a2e06c572e41
This commit is contained in:
Jarrod Johnson 2013-08-07 10:01:16 -04:00
parent b985624a4b
commit 7371a58aba
10 changed files with 7 additions and 7 deletions

View File

@ -24,7 +24,7 @@ import os
import string
import sys
from ipmi import command
from pyghmi.ipmi import command
password = os.environ['IPMIPASSWORD']
os.environ['IPMIPASSWORD'] = ""
if (len(sys.argv) < 3):

View File

@ -15,7 +15,7 @@
# limitations under the License.
# This represents the low layer message framing portion of IPMI
from ipmi.private import session
from pyghmi.ipmi.private import session
boot_devices = {

View File

@ -21,8 +21,8 @@ import os
import struct
import types
from ipmi.private import constants
from ipmi.private import session
from pyghmi.ipmi.private import constants
from pyghmi.ipmi.private import session
class Console(object):

View File

View File

@ -29,7 +29,7 @@ from Crypto.Cipher import AES
from Crypto.Hash import HMAC
from Crypto.Hash import SHA
from ipmi.private import constants
from pyghmi.ipmi.private import constants
initialtimeout = 0.5 # minimum timeout for first packet to retry in any given

View File

@ -18,7 +18,7 @@ classifier =
[files]
packages =
ipmi
pyghmi
[global]
setup-hooks =

View File

@ -23,7 +23,7 @@ import sys
import termios
import tty
from ipmi import console
from pyghmi.ipmi import console
tcattr = termios.tcgetattr(sys.stdin)
newtcattr = tcattr