【发布时间】:2020-01-23 18:45:31
【问题描述】:
我正在尝试使用 Fabric 2 自动化我的部署。
当我通过远程服务器上的命令行手动执行 git pull 时,一切正常。
当我尝试对我的 Fabric/Invoke 脚本执行相同操作时,它不允许我拉动。
虽然它允许我执行 git status 和其他命令。
代码:
# Imports
from fabric import Connection
from fabric.tasks import task
import os
# Here i pass my local passphrase:
kwargs = {'passphrase': os.environ["SSH_PASSPHRASE"]}
@task
def serverdeploy(c, branch="Staging"):
con = Connection('myuser@myhost', connect_kwargs=kwargs)
with con.cd("/home/user/repository/"):
# Activate the virtual environment:
with con.prefix("source ENV/bin/activate"):
con.run("git pull origin {}".format(branch))
结果是:
git@bitbucket.org: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
注意事项:
在进行拉取操作时,我什至没有被要求输入密码。
我尝试过在不激活环境的情况下进行拉取,但这也不起作用。
可能是什么问题?
【问题讨论】:
标签: python git paramiko fabric invoke-command