fabric
How do I copy a directory to a remote machine using Fabric?
I have a directory on my local machine that I would like to copy to a remote machine (and rename it) using Fabric. I know I can copy file using put(), but what about a directory. I know it\'s easy 开发[详细]
2023-02-16 19:49 分类:问答Python Fabric gives: Fatal error: No existing session
I have the following simple fabfile.py from the docs: from fabric.api import run def host_type(): 开发者_如何转开发run(\'uname -s\')[详细]
2023-02-16 05:40 分类:问答Why does fabric report "No hosts found"?
env.roledefs = { \'seed\': [\'host1\'], \'peer\': [\'host2\'] } @roles(\'seed\') def test(): pass @roles(\'peer\')[详细]
2023-02-16 03:39 分类:问答Best way to pipe the output of a local() to the stdin of a remote run() command in Fabric?
Is there a simple way to pipe output from local commands to remote ones (and vice versa)? I\'ve always just piped to a file, moved the file over, and then read it...but it seems like there could be a[详细]
2023-02-13 14:41 分类:问答Python Fabric error when executing git archive command
I\'m running Fabric on a windows 7 machine, when I type: fab production setup I get the following error:[详细]
2023-02-12 03:03 分类:问答Fabric methods exceptions
I try to make Fabric func, which checks if Apache installed: from fabric.api import * def check_apache():[详细]
2023-02-11 22:18 分类:问答Python 2.7 fabric/paramiko EOF when trying to untar a remote file
I am trying to remotely untar a file using fabric 0.92, but am receiving an EOF from paramiko. def deployFile(self, localdir, remoteroot, filename):[详细]
2023-02-09 07:38 分类:问答How does one get the output of fabric execution (fab.exe) on windows 7?
I am am interested in using Fabric as a deployment tool and I am having trouble making it through the tutorial.I believe I have it installed correctly (I used easy-install)[详细]
2023-02-06 20:56 分类:问答PHP alternative for Python's fabric
I am happily using fabric for my Python projects for deployment. No开发者_StackOverflow社区w I am engaged in a larger PHP project and wondering if there is something like fabric for PHP?Hmm? Why does[详细]
2023-02-03 14:48 分类:问答fabric keyword argument error
I\'m running fabric to deploy my django app.I\'m issuing the following command: run(\'cd $(path); mkdir releases; mkdir shared; mkdir packages;\', fail=\'ignore\')[详细]
2023-01-30 04:01 分类:问答