- 论坛徽章:
- 0
|
reb00t 发表于 2015-05-22 13:40 ![]()
大致看了下文档:
env.roledefs 这个是固定了的~ ,
'hosts': ['www1', 'www2', 'www3'] 后面是一串主机一 ...
是的,我后面也仔细看了下文档,由于固定了比较麻烦,于是换了个思路,先用数组保存所有虚拟机,然后再重新定义个变量专门用来读我输入的IP地址,修改后运行没问题了~感谢你的回复~~~- # --coding: utf-8 --
- from fabric.api import *
- ros = {
- '10.1.1.3':['10.1.1.188','instance-000001'],
- '10.1.1.5':['10.1.1.188','instance-000002'],
- '10.1.1.4':['10.1.1.2','instance-000006'],
- '10.1.1.7':['10.1.1.2','instance-000007'],
- }
- a = raw_input('please input what IP_address which you want to search: \n>>>')
- In_Name = ros[a][1]
- sh_ins = "virsh dominfo %r" %In_Name
- env.hosts = ros[a][0]
- env.password = 'passwd'
- env.port = 200
- note = '\x1b[0;32m%r\x1b[0m is belong to KVM \x1b[0;32m%r\x1b[0m,and its Instance name is \x1b[0;32m%r\x1b[0m' %(a,env.hosts,In_Name)
- print note
- def show_vms():
- run("virsh list --all")
- def show_ins():
- run(sh_ins)
复制代码 |
|