可以在 Fabric 中使用条件执行吗?

发布于 2024-12-20 19:56:09 字数 118 浏览 0 评论 0原文

是否可以要求结构有条件地执行操作?这应该是相当简单的,因为它“只是 Python”,但我不是 100% 确定如何运行命令并捕获它们的返回代码或输出。

举个例子,我如何才能以主机中环境变量的值为条件进行行为?

Is it possible to ask fabric to perform actions conditionally? This should be fairly trivial, because it's "just Python", but I'm not 100% sure how to run commands and capture their return code or output.

As an example, how would I have behaviour that is conditional on the value of an environment variable in the host?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哆啦不做梦 2024-12-27 19:56:09

这非常简单:

@hosts('host.example.com')
def task():
    if run('echo $SOME_VAR') == 'some value':
        run('some_other_command.sh')

It's pretty straightforward:

@hosts('host.example.com')
def task():
    if run('echo $SOME_VAR') == 'some value':
        run('some_other_command.sh')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文