- 20 Nov, 2014 1 commit
-
-
Conflicts: lib/ansible/modules/core lib/ansible/modules/extras
Brian Coca committed
-
- 12 Nov, 2014 1 commit
-
-
Brian Coca committed
-
- 10 Nov, 2014 1 commit
-
-
Add -t OR --tags options to pass to ansible-playbook
mmicael1 committed
-
- 01 Nov, 2014 1 commit
-
-
more intelligent about ignoring files that are clearly not modules
Brian Coca committed
-
- 30 Oct, 2014 5 commits
-
-
Brian Coca committed
-
Brian Coca committed
-
Brian Coca committed
-
function
Brian Coca committed -
added display of deprecated to ansible-doc now it does better job of using tty columns fixed indication truncation of desc with trailing ... removed extension from module list, also fixed matching exlusion blacklist
Brian Coca committed
-
- 27 Oct, 2014 1 commit
-
-
'_', they will be loaded after non prefixed modules are checked they can be full modules or symlinks to existing ones (alias) also updated ansible doc to ignore these, will eventually add selective display
Brian Coca committed
-
- 26 Oct, 2014 1 commit
-
-
When running `ansible-doc --list` a lot of errors are generated when `ansible-doc` tries to find documentation strings in `.pyc` files.
Ton Kersten committed
-
- 09 Oct, 2014 2 commits
-
-
Pete Smith committed
-
Fixes #9236
Toshio Kuratomi committed
-
- 16 Sep, 2014 1 commit
-
-
James Cammarata committed
-
- 15 Sep, 2014 1 commit
-
-
Toshio Kuratomi committed
-
- 13 Sep, 2014 1 commit
-
-
using this (for testing purpose) : $ ansible-galaxy install COPYING - error: the file downloaded was not a tar.gz - COPYING was NOT installed successfully. - you can use --ignore-errors to skip failed roles. this result in COPYING being erased, which is surprising for the user. This also prevent erasing requirements.yml if someone use the wrong flag.
Michael Scherer committed
-
- 09 Sep, 2014 3 commits
-
-
This change fixes hg galaxy roles Roles also get installed if roles path is missing, which the tests currently require (fixes #8950)
Will Thames committed -
fixes #8823 modified: bin/ansible-galaxy
Serge van Ginderachter committed -
James Cammarata committed
-
- 08 Sep, 2014 1 commit
-
-
James Cammarata committed
-
- 06 Sep, 2014 1 commit
-
-
This option, when set to True, allows "ansible" command to load callback plugins
Bruno BAILLUET committed
-
- 05 Sep, 2014 1 commit
-
-
Fixes #8890
James Cammarata committed
-
- 04 Sep, 2014 1 commit
-
-
Fixes #8884
James Cammarata committed
-
- 27 Aug, 2014 1 commit
-
-
Defaults to the system wide `roles-path` when `path` is not specified in the provided `role-file`. An example installing nginx to a relative path specified by the `role-file`. - src: https://github.com/bennojoy/nginx path: vagrant/roles/
John Dewey committed
-
- 26 Aug, 2014 1 commit
-
-
Matt Martz committed
-
- 22 Aug, 2014 4 commits
-
-
Fixes #8324 Improves #7667
Will Thames committed -
Michael DeHaan committed
-
Only print a blank line between plays when also doing --list-hosts and/or --list-tasks, otherwise this output just a long list of blank lines, one for each play.
Serge van Ginderachter committed -
John Dewey committed
-
- 21 Aug, 2014 10 commits
-
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
`ansible-galaxy init --offline ...` can create a role without talking to the galaxy api server `ansible-galaxy install ...` only needs to talk to the galaxy api server for galaxy roles, not tar files or scm archives Fixed a bug in command line role installation
Will Thames committed -
Older git archive commands create tar archives even with a tar.gz extension. So change it to always create tar archives and have the install_role method cope. Removed ssh roles from the test case as they don't work unless you can connect to bitbucket via ssh and have your key there. Corrected a minor typo in error messages
Will Thames committed -
Added docs Added more tests Improved how roles are returned from the parsers
Will Thames committed -
* Roles can now be given a friendly name as third field in role spec csv * Roles can be installed from URL (not just from archived SCMs) * Integration tests to demonstrate this * Unit tests to ensure that role spec parsing works as expected
Will Thames committed -
Moved repo_url_to_role_name to common method in ansible.utils Added unit test for repo_url_to_role_name Added integration tests for galaxy
Will Thames committed -
Change SCM determination from executing git/hg commands to explicit in URL. Fix check for already installed dependencies
Will Thames committed -
ansible-galaxy can now refer to SCM URLs (git and hg at this point) for role names Dependencies need to use the full SCM URLs too. Otherwise all seems to work well Test rolesfile ``` http://bitbucket.org/willthames/git-ansible-galaxy,v1.1 https://bitbucket.org/willthames/hg-ansible-galaxy ``` (works with ssh too)
Will Thames committed
-
- 20 Aug, 2014 1 commit
-
-
This addresses a bug in ansible-pull where running ansible-pull with an existing inventory causes the ansible job that does the SCM checkout to run twice - once for localhost and once for the fully qualified hostname. This can cause a race condition, and usually results in one of the ansible checkouts failing because one of the scm checkouts has its references updated underneath it. Although the SCM checkout actually succeeds, ansible fails with non-zero exit status, and so ansible-pull does not continue. Now that localhost is implicit for ansible runs, the ansible scm checkout can be done using just localhost as a target.
Will Thames committed
-