Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 308924 Details for
Bug 445926
RFE: Feature request for ssh capabilities in fence_drac script
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
fence drac 5
fence_drac5.py (text/x-python), 1.82 KB, created by
Marek Grac
on 2008-06-11 13:11:52 UTC
(
hide
)
Description:
fence drac 5
Filename:
MIME Type:
Creator:
Marek Grac
Created:
2008-06-11 13:11:52 UTC
Size:
1.82 KB
patch
obsolete
>#!/usr/bin/python > >##### >## >## The Following Agent Has Been Tested On: >## >## DRAC Version Firmware >## +-----------------+---------------------------+ >## DRAC 5 1.0 (Build 06.05.12) >## DRAC 5 1.21 (Build 07.05.04) >## >## @note: drac_version, modulename were removed >##### > >import sys, re, pexpect >sys.path.append("@FENCEAGENTSLIBDIR@") >from fencing import * > >#BEGIN_VERSION_GENERATION >RELEASE_VERSION="New Drac5 Agent - test release on steroids" >REDHAT_COPYRIGHT="" >BUILD_DATE="March, 2008" >#END_VERSION_GENERATION > >def get_power_status(conn, options): > try: > conn.sendline("racadm serveraction powerstatus") > conn.log_expect(options, options["-c"], SHELL_TIMEOUT) > except pexpect.EOF: > fail(EC_CONNECTION_LOST) > except pexpect.TIMEOUT: > fail(EC_TIMED_OUT) > > status = re.compile("Server power status: (.*)", re.IGNORECASE).search(conn.before).group(1) > return status.lower().strip() > >def set_power_status(conn, options): > action = { > 'on' : "powerup", > 'off': "powerdown" > }[options["-o"]] > > try: > conn.sendline("racadm serveraction " + action) > conn.log_expect(options, options["-c"], POWER_TIMEOUT) > except pexpect.EOF: > fail(EC_CONNECTION_LOST) > except pexpect.TIMEOUT: > fail(EC_TIMED_OUT) > >def main(): > device_opt = [ "help", "version", "agent", "quiet", "verbose", "debug", > "action", "ipaddr", "login", "passwd", "passwd_script", > "cmd_prompt", "secure", > "drac_version", "module_name" ] > > options = check_input(device_opt, process_input(device_opt)) > > ## > ## Fence agent specific defaults > ##### > if 0 == options.has_key("-c"): > options["-c"] = "\$" > > ## > ## Operate the fencing device > ###### > conn = fence_login(options) > fence_action(conn, options, set_power_status, get_power_status) > > ## > ## Logout from system > ###### > conn.sendline("exit") > conn.close() > >if __name__ == "__main__": > main()
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 445926
: 308924 |
308925