github bug管理的bug report在哪

Please note that GitHub no longer supports old versions of Internet Explorer.
We recommend upgrading to the latest , , or .
If you are using IE 11, make sure you .
You can't perform that action at this time.
You signed in with another tab or window.
to refresh your session.
You signed out in another tab or window.
to refresh your session.Please note that GitHub no longer supports old versions of Internet Explorer.
We recommend upgrading to the latest , , or .
If you are using IE 11, make sure you .
opened this Issue Jan 5, 2015
& 1 comment
No milestone
No one assigned
Environment:
OS X 10.9.5. Tried with Ansible installed from Homebrew and in a virtualenv from pip.
The changes to module argument parsing in
mean that on Ansible 1.7.2+, local_action (and presumably anything else that takes a module name as its first argument) no longer strips newline characters from the module name, resulting in module not found errors when Ansible looks for module_name\n rather than module_name. Originally reported as .
Switching from the
local_action: &
module_name
syntax we had been using in our playbooks on 1.7.1 and earlier to
local_action:
module: module_name
fixes it, but I'm not sure if this is intentional behavior.
Steps To Reproduce:
Here's the shortest playbook I could come up with to reproduce the problem:
- hosts: all
gather_facts: no
- name: Do something
local_action: &
ansible --version
Expected Results:
With Ansible 1.7.1:
$ ansible-playbook -i localhost, -c local
~/Desktop/sample-playbook.yml -vvvv
PLAY [all] ********************************************************************
TASK: [Do something] **********************************************************
&127.0.0.1& REMOTE_MODULE command ansible --version
&127.0.0.1& EXEC ['/bin/sh', '-c', 'mkdir -p $HOME/.ansible/tmp/ansible-tmp-.16-729 && chmod a+rx $HOME/.ansible/tmp/ansible-tmp-.16-729 && echo $HOME/.ansible/tmp/ansible-tmp-.16-729']
&127.0.0.1& PUT /var/folders/v5/9frdjzm50p9_60zfy7sy/T/tmp_rtiGD TO /Users/rouge8/.ansible/tmp/ansible-tmp-.16-729/command
&127.0.0.1& EXEC ['/bin/sh', '-c', u'LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 /usr/bin/python /Users/rouge8/.ansible/tmp/ansible-tmp-.16-729/ rm -rf /Users/rouge8/.ansible/tmp/ansible-tmp-.16-729/ &/dev/null 2&&1']
changed: [localhost -& 127.0.0.1] =& {"changed": true, "cmd": ["ansible", "--version"], "delta": "0:00:00.327966", "end": " 10:39:52.587168", "rc": 0, "start": " 10:39:52.259202", "stderr": "", "stdout": "ansible 1.7.1"}
PLAY RECAP ********************************************************************
unreachable=0
Actual Results:
$ ansible-playbook -i localhost, -c local
~/Desktop/sample-playbook.yml -vvvv
PLAY [all] ********************************************************************
TASK: [Do something] **********************************************************
&127.0.0.1& REMOTE_MODULE command ansible --version
fatal: [localhost -& 127.0.0.1] =& module command
not found in configured module paths
FATAL: all hosts have already failed -- aborting
PLAY RECAP ********************************************************************
to retry, use: --limit @/Users/rouge8/sample-playbook.retry
unreachable=1
You can't perform that action at this time.
You signed in with another tab or window.
to refresh your session.
You signed out in another tab or window.
to refresh your session.

我要回帖

更多关于 bugreport xf.exe 的文章

 

随机推荐