Answers:
Fabric 2任务参数文档:
http://docs.pyinvoke.org/zh_CN/latest/concepts/invoking-tasks.html#task-command-line-arguments
Fabric 1.X使用以下语法将参数传递给任务:
fab task:'hello world'
fab task:something='hello'
fab task:foo=99,bar=True
fab task:foo,bar
您可以在Fabric文档中阅读有关它的更多信息。
hello world
似乎有必要吗?
world
是一个新任务。
'hello world'
将导致Python字符串为'hello world'
,但"hello world"
将导致hello world
(这可能是大多数人想要的)。
bar=True
将传递fabric命令,因为bar='True'
它不是布尔值
结构参数是通过非常基本的字符串解析来理解的,因此您在发送它们时必须要小心一点。
以下是将参数传递给以下测试函数的几种不同方式的示例:
@task
def test(*args, **kwargs):
print("args:", args)
print("named args:", kwargs)
$ fab "test:hello world"
('args:', ('hello world',))
('named args:', {})
$ fab "test:hello,world"
('args:', ('hello', 'world'))
('named args:', {})
$ fab "test:message=hello world"
('args:', ())
('named args:', {'message': 'hello world'})
$ fab "test:message=message \= hello\, world"
('args:', ())
('named args:', {'message': 'message = hello, world'})
我在这里使用双引号将外壳排除在等式之外,但对于某些平台,单引号可能更好。还要注意Fabric认为是定界符的字符的转义符。
docs中有更多详细信息:http : //docs.fabfile.org/en/1.14/usage/fab.html#per-task-arguments
在Fabric 2中,只需将参数添加到任务函数即可。例如,将version
参数传递给task deploy
:
@task
def deploy(context, version):
...
如下运行:
fab -H host deploy --version v1.2.3
Fabric甚至自动记录选项:
$ fab --help deploy
Usage: fab [--core-opts] deploy [--options] [other tasks here ...]
Docstring:
none
Options:
-v STRING, --version=STRING
如果有人希望将参数从一个任务传递给fabric2中的另一个任务,则只需使用环境字典即可:
@task
def qa(ctx):
ctx.config.run.env['counter'] = 22
ctx.config.run.env['conn'] = Connection('qa_host')
@task
def sign(ctx):
print(ctx.config.run.env['counter'])
conn = ctx.config.run.env['conn']
conn.run('touch mike_was_here.txt')
并运行:
fab2 qa sign