Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fixes #6750 Check git subcommand for --remote and expose errors | James Tanner | 2014-04-03 | 1 | -2/+37 | |
| | ||||||
* | Fix a typo in the subversion module documentation | Gael Pasgrimaud | 2014-04-03 | 1 | -1/+1 | |
| | ||||||
* | Fixed cwd for submodules update | Oleg A. Mamontov | 2014-04-02 | 1 | -1/+1 | |
| | ||||||
* | Merge branch 'intellectronica/non-recursive-git' of ↵ | Michael DeHaan | 2014-03-28 | 1 | -3/+19 | |
|\ | | | | | | | | | | | | | git://github.com/intellectronica/ansible into devel Conflicts: library/source_control/git | |||||
| * | Add a `recursive` option to the git command. | Tom Berger | 2013-12-02 | 1 | -3/+18 | |
| | | | | | | | | | | | | Make it possible to clone without submodules by setting recursive to no. Default is yes, so no change is needed in existing plays. | |||||
* | | Add --remote to git submodule_update | addshore | 2014-03-28 | 1 | -2/+2 | |
| | | | | | | | | | | This simply adds --remote to the git submodule update command. This means that if a branch is defined in .gitmodules then we should track said branch when updating. | |||||
* | | Merge branch 'subversion_export' of https://github.com/maniaplanet/ansible ↵ | James Cammarata | 2014-03-25 | 1 | -1/+19 | |
|\ \ | | | | | | | | | | into maniaplanet-subversion_export | |||||
| * | | Adding example for svn export | Baptiste Lafontaine | 2014-02-10 | 1 | -0/+3 | |
| | | | ||||||
| * | | Adding 'export' option to subversion module (to export instead of checkout) | Baptiste Lafontaine | 2013-12-13 | 1 | -1/+16 | |
| | | | ||||||
* | | | Fixes #6582 Re-add regex to ignore untracked files that were never tracked | James Tanner | 2014-03-19 | 1 | -0/+1 | |
| | | | ||||||
* | | | Fixes #6567 put the git wrapper script in the module temp dir | James Tanner | 2014-03-19 | 1 | -1/+2 | |
| | | | ||||||
* | | | add param to note example for ssh-keyscan | andreaskern | 2014-03-18 | 1 | -1/+1 | |
| | | | | | | | | | | | | hostnames in the known hosts file are typically stored as Hashed values, calling 'ssh-keyscan' with '-H' changes to output to the Hashed format so that the known_hosts file looks more consistent | |||||
* | | | Fix documentation for accept_hostkey | patrickheeney | 2014-03-13 | 1 | -4/+5 | |
| | | | ||||||
* | | | Some more run_command updates. | Michael DeHaan | 2014-03-12 | 1 | -2/+1 | |
| | | | ||||||
* | | | git: Execute git commands in `dest` directory | Patrick Smith | 2014-03-12 | 1 | -2/+2 | |
| | | | ||||||
* | | | Remove validate_certs parameter from fetch_url calls | James Cammarata | 2014-03-12 | 1 | -3/+3 | |
| | | | ||||||
* | | | Force command action to not be executed by the shell unless specifically enabled | James Tanner | 2014-03-10 | 2 | -51/+45 | |
| | | | ||||||
* | | | Validate SSL certs accessed through urllib* | James Cammarata | 2014-03-10 | 1 | -38/+45 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Adds another module utility file which generalizes the access of urls via the urllib* libraries. * Adds a new spec generator for common arguments. * Makes the user-agent string configurable. Fixes #6211 | |||||
* | | | Pass svn arguments as a list of strings instead of using string substition ↵ | Chris Church | 2014-02-26 | 1 | -12/+12 | |
| | | | | | | | | | | | | to ensure all parameters are escaped properly. | |||||
* | | | Merge branch 'git_version_tags' of https://github.com/j2sol/ansible into ↵ | James Cammarata | 2014-02-25 | 1 | -0/+15 | |
|\ \ \ | | | | | | | | | | | | | j2sol-git_version_tags | |||||
| * | | | Make sure requested version tag gets downloaded | Jesse Keating | 2014-02-07 | 1 | -0/+15 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is a subtle bug in how the git module currently works. If the version you request is a tag name, and you've already got the repo cloned, and the tag name is a new tag, but refers to the already checked out working copy, the git module would exit early without change. This is bad as it means the new tag ref was not fetched and could not be used in later tasks. This change will check if the version is a remote tag, and if the tag doesn't exist locally. If that is true, it'll do a fetch. The activity could still be seen as not a change, because the working copy won't be updated, if the new tag refers to the already checked out copy, but that's not different than before and can be fixed as a more comprehensive overhaul of tracking change in the git module. | |||||
* | | | | Merge branch 'devel' of https://github.com/calebbrown/ansible into ↵ | James Cammarata | 2014-02-17 | 1 | -1/+1 | |
|\ \ \ \ | |/ / / |/| | | | | | | | calebbrown-devel | |||||
| * | | | Fix a bug in "hg" module so that `pull` is not set to a version. | Caleb Brown | 2014-01-23 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is a bug in the `hg` module where if a `tag` is used it won't properly be able to update to it. This problem is exhibited on repository where a tag is moved from an older commit to a newer commit. | |||||
* | | | | (#5822) Use `mkstemp` to open a temporary file (as NamedTemporaryFile ↵ | Michael Porter | 2014-01-30 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | doesn't take a `delete` argument in Python < 2.6) | |||||
* | | | | Fixes #5750 Fail on missing ~/.ssh and ignore accept_hostkey if ↵ | James Tanner | 2014-01-28 | 1 | -2/+7 | |
| | | | | | | | | | | | | | | | | stricthoskeychecking is off | |||||
* | | | | Fix git module parameters to conform to code standards | James Tanner | 2014-01-23 | 1 | -8/+8 | |
| | | | | ||||||
* | | | | Fixes #4108 Add sshopts and keyfile parameters to the git module | James Tanner | 2014-01-23 | 1 | -1/+72 | |
|/ / / | ||||||
* | | | subversion: use LANG=C to prevent regex failures | René Moser | 2014-01-15 | 1 | -0/+1 | |
| | | | | | | | | | | | | Fixes bug GH-5549. | |||||
* | | | Merge pull request #5141 from kisielk/hg | jctanner | 2014-01-14 | 1 | -42/+6 | |
|\ \ \ | | | | | | | | | | | | | hg module: Don't modify hgrc when running purge | |||||
| * | | | Don't modify hgrc when running purge | Kamil Kisiel | 2013-12-02 | 1 | -42/+6 | |
| |/ / | ||||||
* | | | Set accept_hostkey to False by default in the git module and fail | James Tanner | 2014-01-11 | 1 | -4/+4 | |
| | | | | | | | | | | | | early if the key is unknown | |||||
* | | | Add an "accept_hostkey" parameter to the git module to help automatically | James Tanner | 2014-01-11 | 1 | -0/+14 | |
|/ / | | | | | | | accept hostkeys for git repos and prevent task hangs when the key is unknown | |||||
* | | Fixes #5023 Convert all modules to use new snippet import pattern | James Tanner | 2013-12-02 | 5 | -10/+10 | |
| | | ||||||
* | | Addresses #5036 fix typo in git module | James Tanner | 2013-11-25 | 1 | -1/+1 | |
| | | ||||||
* | | Fixes 5036 add missing parameter to git module function call | James Tanner | 2013-11-25 | 1 | -1/+1 | |
| | | ||||||
* | | Changelog updates and a few module renames. vpc -> ec2_vpc, githooks -> ↵ | Michael DeHaan | 2013-11-18 | 1 | -3/+3 | |
|/ | | | | github_hooks, blacklist -> kernel_blacklist. These are all new in 1.4 so safe to change. | |||||
* | Fix copyright section in githooks module | James Tanner | 2013-11-14 | 1 | -22/+20 | |
| | ||||||
* | Merge pull request #4691 from cg-soft/git-bare-ref-repo-support | jctanner | 2013-11-14 | 1 | -34/+76 | |
|\ | | | | | | | Add support for bare git reference repos | |||||
| * | Add support for bare git reference repos | Christian Goetze | 2013-10-31 | 1 | -34/+76 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds two parameters to the git module: bare (boolean) Indicates this is to be a bare repositori reference (string) Indicates the path or url to the reference repo. Check out the "--reference" option in the "git clone" man page Added appropriate tests. | |||||
* | | Quote docstring in githooks module | James Tanner | 2013-11-14 | 1 | -1/+1 | |
| | | ||||||
* | | Merge pull request #4731 from pcgentry/devel | jctanner | 2013-11-14 | 1 | -0/+173 | |
|\ \ | | | | | | | | | | new githooks module | |||||
| * | | adding the githooks module | Phillip | 2013-10-30 | 1 | -0/+173 | |
| |/ | ||||||
* | | Fix documentation formatting. | Michael DeHaan | 2013-10-31 | 2 | -4/+4 | |
| | | ||||||
* | | Suggest keyscan for github/other SCM hanging. | Michael DeHaan | 2013-10-31 | 2 | -9/+6 | |
|/ | ||||||
* | git: Don't add --branch while cloning if the version is a SHA-1 hash. | Yap Sok Ann | 2013-10-16 | 1 | -2/+3 | |
| | ||||||
* | git: Handle network problem when running `git ls-remote`. | Yap Sok Ann | 2013-10-16 | 1 | -2/+2 | |
| | ||||||
* | git: Always return the before/after revisions, even in check mode. | Yap Sok Ann | 2013-10-16 | 1 | -27/+18 | |
| | | | | | | | | | The return values from check mode and non-check mode should match in all cases, except when a SHA-1 hash is used as version, as there is no way to check if it is a valid hash using `git ls-remote`. Also, to accomodate this change, the force flag for the reset function has been removed so that we can do the checking in main. | |||||
* | git: Make function get_remote_head usable when cloning. | Yap Sok Ann | 2013-10-16 | 1 | -9/+16 | |
| | | | | This allows the module to return the before/after revisions in all cases. | |||||
* | git: Remove unnecessary return code checking. | Yap Sok Ann | 2013-10-16 | 1 | -10/+4 | |
| | | | | The functions either return rc=0 or call fail_json themselves. | |||||
* | git: Full length SHA-1 in, full length SHA-1 out. | Yap Sok Ann | 2013-10-16 | 1 | -5/+4 | |
| | | | | This removes ambiguity at the expense of slight backward incompatibility. |