- 23 Apr, 2014 7 commits
-
-
https://github.com/sivel/ansible
Merge branch 'raw-script-su-support' of https://github.com/sivel/ansible into sivel-raw-script-su-support
James Cammarata committed -
update ec2_tags documentation to include missing option
James Cammarata committed -
Possible docs error: 'path' instead of 'src'
James Cammarata committed -
I came to this example today (line 50), and when I tried it, I got an error: `msg: src and dest are required for creating links` So, I changed **path** to **src** and it worked fine. Looks like the example is wrong, since the docs say "dest" is already an alias for "path", in which case we would have 2 "path" definitions.
Erika Heidi committed -
'list' was added more recently, it was omitted from the documentation.
Ted Timmons committed -
Give more information when a task is empty
James Cammarata committed -
I made a typo in a playbook and was great by: ERROR: expecting dict; got: None The issue was a single - on the last line of a playbook. With the name of the file, I was able to see right away where the error was.
Michael Scherer committed
-
- 22 Apr, 2014 7 commits
-
-
Fixes #6979
James Cammarata committed -
Merges the functionality of the original jinja2 random filter with the one we provide. Fixes #7113
James Cammarata committed -
Add a better error message for service
James Cammarata committed -
While migrating my playbook to a newer ansible version, I faced the error message "unknown init system, cannot enable service". It turned out to be caused by a wrong service name that was not expanded anymore. So by giving the name of the service that cannot be enabled and a more precise reason, i think people will be able to diagnose their issue more easily.
Michael Scherer committed -
Fixes #6737
James Cammarata committed -
should now work with versions older than 8.4
Michael DeHaan committed -
Brian Coca committed
-
- 21 Apr, 2014 16 commits
-
-
Update facts.py
James Cammarata committed -
Fixes #7093 --devel
faust64 committed -
Add an example to show all hostvars using debug
James Cammarata committed -
Small bug - 'acts' should be 'facts'
James Cammarata committed -
Prevent catching unrelated exceptions
James Cammarata committed -
Add check of return code for autoinstallation of python-apt
James Cammarata committed -
Fixes #7084
James Cammarata committed -
Improve error message when multiple action are given
James Cammarata committed -
fixed issue with FreeBSD network facts
James Cammarata committed -
Clean a bit more the ssh_args configuration
James Cammarata committed -
Enhance error message about missing ControlPersist
James Cammarata committed -
CaptTofu committed
-
Radek Simko committed
-
fixed ETIME issue on FreeBSD 8 through 10, which broke fact gather
Michael DeHaan committed -
This will allow easier debugging through more meaningful error message.
Radek Simko committed -
This is a useful example to help debug how facts and vars are being collated.
Dag Wieers committed
-
- 20 Apr, 2014 3 commits
-
-
This can be illustrated using this playbook: - command: id delegate_to: "{{ remote_server }}" user: "{{ remote_user }}" The error is to use 'user' instead of 'remote_user', but the error message do not really mention it, so it can be a bit hard to spot.
Michael Scherer committed -
versions and it now works
Brian Coca committed -
gathering
Brian Coca committed
-
- 19 Apr, 2014 3 commits
-
-
If someone add ssh_args = " " to his .ansible.cfg, it will result into strange failure later : <server.example.org> ESTABLISH CONNECTION FOR USER: misc <server.example.org> REMOTE_MODULE ping <server.example.org> EXEC ['ssh', '-C', '-tt', '-q', ' ', '-o', 'KbdInteractiveAuthentication=no', '-o', 'PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey', '-o', 'PasswordAuthentication=no', '-o', 'ConnectTimeout=10', 'server.example.org', "/bin/sh -c 'mkdir -p /tmp/ansible-tmp-1397947711.21-5932460998838 && chmod a+rx /tmp/ansible-tmp-1397947711.21-5932460998838 && echo /tmp/ansible-tmp-1397947711.21-5932460998838'"] server.example.org | FAILED => SSH encountered an unknown error during the connection. We recommend you re-run the command using -vvvv, which will enable SSH debugging output to help diagnose the issue The root cause is the empty string between -q and -o, who kinda break mkdir.
Michael Scherer committed -
ansible_ssh_args is good for playbook, but in the ~/.ansible.cfg file, it should be ssh_args in a specific section.
Michael Scherer committed -
James Cammarata committed
-
- 18 Apr, 2014 4 commits
-
-
Michael DeHaan committed
-
Fixes #7006
James Cammarata committed -
James Cammarata committed
-
James Cammarata committed
-