3

不确定这是否是一个错误ansible-galaxy,但我正在尝试从 requirements.yml 文件(相关的 ansible 文档)安装角色。其中一个角色是从 git 中提取的,具体version如下:

要求.yml

---
- src:  https://github.com/thom-nic/ansible-shell
  name: thom-nic.shell
  version: develop

当我运行时,ansible-galaxy install我得到以下输出:

± ansible-galaxy install -r requirements.yml --force
- executing: git clone https://github.com/thom-nic/ansible-shell thom-nic.shell
- executing: git archive --prefix=thom-nic.shell/ --output=/var/folders/cw/9vh4w77n4vb_bchhsxnglrcm0000gn/T/tmpF4GAqD.tar develop
- command git archive --prefix=thom-nic.shell/ --output=/var/folders/cw/9vh4w77n4vb_bchhsxnglrcm0000gn/T/tmpF4GAqD.tar develop failed
  in directory /var/folders/cw/9vh4w77n4vb_bchhsxnglrcm0000gn/T/tmpIyYaJz
- thom-nic.shell was NOT installed successfully.

如果我将其更改versionmaster它可以工作。我已经在 git repos 中尝试了其他角色,结果相同。

奇怪的是,ansible-galaxy它本身似乎没有--version输出,但ansible --version报告 v1.8.3。

4

1 回答 1

9

这是一个已知问题。同时,作为一种变通方法,修改 requirements.yml 中的版本,如下所示:

---
- src:  https://github.com/thom-nic/ansible-shell
  name: thom-nic.shell
  version: remotes/origin/develop
于 2015-03-04T19:55:26.057 回答