mirror of
https://opendev.org/x/pyghmi
synced 2025-01-14 19:57:47 +00:00
48 lines
1.3 KiB
Python
Executable File
48 lines
1.3 KiB
Python
Executable File
#!/usr/bin/env python
|
|
"""
|
|
@author: Jarrod Johnson <jbjohnso@us.ibm.com>
|
|
|
|
Copyright 2013 IBM Corporation
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
|
|
from ipmi_command import ipmi_command
|
|
password=os.environ['IPMIPASSWORD']
|
|
os.environ['IPMIPASSWORD']=""
|
|
if (len(sys.argv) < 3):
|
|
print "Usage:"
|
|
print " IPMIPASSWORD=password %s bmc username <cmd> <optarg>"%sys.argv[0]
|
|
sys.exit(1)
|
|
bmc=sys.argv[1]
|
|
userid=sys.argv[2]
|
|
command=sys.argv[3]
|
|
arg=None
|
|
if len(sys.argv)==5:
|
|
arg=sys.argv[4]
|
|
ipmicmd = ipmi_command(bmc=bmc,userid=userid,password=password)
|
|
if command == 'power':
|
|
if arg:
|
|
print ipmicmd.set_power(arg,wait=True)
|
|
else:
|
|
print ipmicmd.get_power()
|
|
elif command == 'bootdev':
|
|
if arg:
|
|
print ipmicmd.set_bootdev(arg)
|
|
else:
|
|
print ipmicmd.get_bootdev()
|
|
|