Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | use correct permission mode when installing | cgtx | 2014-02-18 | 1 | -6/+8 |
| | |||||
* | Merge pull request #6052 from resmo/patch-1 | Michael DeHaan | 2014-02-18 | 1 | -1/+1 |
|\ | | | | | Docsite: Fixed typo. | ||||
| * | Docsite: Fixed typo. | René Moser | 2014-02-18 | 1 | -1/+1 |
|/ | |||||
* | Avoid breaking on unicode input when logging to syslog in modules | Martin Thorsen Ranang | 2014-02-17 | 3 | -2/+35 |
| | | | | After commit 254f87e, non-ascii input broke logging to syslog. | ||||
* | 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. | ||||
* | | Merge branch 'fix-5679' of https://github.com/jirutka/ansible into ↵ | James Cammarata | 2014-02-17 | 2 | -1/+22 |
|\ \ | | | | | | | | | | jirutka-fix-5679 | ||||
| * | | Fixes #5679: lineinfile ignores newline in line argument | Jakub Jirutka | 2014-01-19 | 2 | -1/+22 |
| | | | |||||
* | | | Tweak library installation path to default to /usr/share/ansible if specified | James Cammarata | 2014-02-17 | 1 | -1/+7 |
| | | | |||||
* | | | Merge branch 'patch-1' of https://github.com/eggsby/ansible into eggsby-patch-1 | James Cammarata | 2014-02-17 | 1 | -1/+2 |
|\ \ \ | |||||
| * | | | bugfix: support path separators in module path | Thomas Omans | 2014-01-15 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | As described by http://docs.ansible.com/intro_configuration.html#library the library supports multiple paths to load modules from. Currently `setup.py` treats something like `/usr/share/ansible:/my/custom/modules` as a single directory name and results in the installed modules not being on the module path. (instead they are in a directory named `/usr/share/ansible:/my/custom/modules`) This commit simply takes the first listed directory as the install directory for the core modules. | ||||
* | | | | Make sure unicode params don't break logging in modules | James Cammarata | 2014-02-17 | 1 | -1/+4 |
| | | | | |||||
* | | | | Sanitize sudo success_key from stdout for raw/script modules | James Cammarata | 2014-02-17 | 1 | -3/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #5533 Closes #5605 Closes #5606 Closes #5607 | ||||
* | | | | Merge pull request #6043 from risaacson/pull_4703 | Richard Isaacson | 2014-02-17 | 2 | -0/+0 |
|\ \ \ \ | | | | | | | | | | | I had to remerge this as the original would not automerge. #4703 | ||||
| * | | | | Merge remote-tracking branch 'berendt/fixing_permissions' into pull_4703 | Richard C Isaacson | 2014-02-17 | 2 | -0/+0 |
|/| | | | | |||||
| * | | | | changing permissions of modules to 0644 | Christian Berendt | 2013-10-28 | 2 | -0/+0 |
| | | | | | |||||
* | | | | | Merge pull request #6038 from mmoya/docfix | Michael DeHaan | 2014-02-17 | 2 | -9/+12 |
|\ \ \ \ \ | | | | | | | | | | | | | Doc improvements / fixes | ||||
| * | | | | | Add link (with minor rewording) to jinja2 builtin filters | Maykel Moya | 2014-02-17 | 1 | -2/+3 |
| | | | | | | |||||
| * | | | | | Add link to ansible-examples repo | Maykel Moya | 2014-02-17 | 1 | -1/+3 |
| | | | | | | |||||
| * | | | | | Fix path to index.html when launching browser | Maykel Moya | 2014-02-17 | 1 | -1/+1 |
| | | | | | | |||||
| * | | | | | Uniform spacing across all filter examples | Maykel Moya | 2014-02-17 | 1 | -4/+4 |
| | | | | | | |||||
| * | | | | | Filter name is singular | Maykel Moya | 2014-02-17 | 1 | -1/+1 |
| | | | | | | |||||
* | | | | | | Merge branch 'fix-postgres_user_to_understand_pg_namespaces' of ↵ | James Cammarata | 2014-02-17 | 1 | -2/+21 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | https://github.com/alanfairless/ansible into alanfairless-fix-postgres_user_to_understand_pg_namespaces | ||||
| * | | | | | | Fix postgresql_user to understand PG namespaces | Alan Fairless | 2014-01-04 | 1 | -2/+21 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously postgresql_user quoted user supplied identifers to create grant statements that look like this: GRANT SELECT on "tablename" to "user"; Which only works if the tablename is not in a namespace. If you supply a namespaced tabelname like "report.revenue" then it creates this incorrect statement: GRANT SELECT on "report.revenue" to "user"; Which will not find the "revenue" table in the "report" namespace, but will rather look for a table named "report.revenue" in the current (default public) namespace. The correct form is: GRANT SELECT on "report"."revenue" to "user"; This approach could have the unfortunate effect that code that previously relied on the other behavior to grant privileges on tables with periods in their names may now break. PostgreSQL users typically shouldn't name tables as such, and users can still access the old behavior and use tablenames with periods in the if they must by supplying their own quoting. | ||||
* | | | | | | | Merge branch 'postgres_alter_role' of https://github.com/jinnko/ansible into ↵ | James Cammarata | 2014-02-17 | 1 | -3/+13 |
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | jinnko-postgres_alter_role Conflicts: library/database/postgresql_user | ||||
| * | | | | | | postgresql_user module: Gracefully handle ALTER ROLE on read-only postgres ↵ | Jinn Koriech | 2013-12-31 | 1 | -3/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | servers. | ||||
* | | | | | | | add note about pipelining | Michael DeHaan | 2014-02-15 | 2 | -1/+33 |
| | | | | | | | |||||
* | | | | | | | Add sudo note. | Michael DeHaan | 2014-02-15 | 1 | -0/+8 |
| | | | | | | | |||||
* | | | | | | | Document ansible_managed changing the template. | Michael DeHaan | 2014-02-15 | 2 | -1/+5 |
| | | | | | | | |||||
* | | | | | | | Some minor docs corrections. | Michael DeHaan | 2014-02-15 | 2 | -1/+4 |
| | | | | | | | |||||
* | | | | | | | Document "|default" Jinja2 filter example. | Michael DeHaan | 2014-02-15 | 1 | -0/+13 |
| | | | | | | | |||||
* | | | | | | | Fixing usage string in ansible-galaxy install for role files | James Cammarata | 2014-02-15 | 1 | -1/+1 |
| | | | | | | | |||||
* | | | | | | | Merge branch 'mohangk-fix_rds_modify_security_group' into devel | James Cammarata | 2014-02-15 | 1 | -13/+27 |
|\ \ \ \ \ \ \ | |||||
| * \ \ \ \ \ \ | Merge branch 'fix_rds_modify_security_group' of ↵ | James Cammarata | 2014-02-14 | 1 | -13/+27 |
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/mohangk/ansible into mohangk-fix_rds_modify_security_group | ||||
| | * | | | | | | | Allow explict setting of vpc_security_groups to allow modification of ↵ | Mohan Krishnan | 2014-02-10 | 1 | -13/+27 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | security groups of RDS instances within a VPC | ||||
* | | | | | | | | | Merge pull request #6021 from risaacson/issue_5359_2 | Richard Isaacson | 2014-02-14 | 3 | -19/+29 |
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Config resoution order correction and documentation. | ||||
| * | | | | | | | | | Minor existing typo fix. | Richard C Isaacson | 2014-02-14 | 1 | -1/+1 |
| | | | | | | | | | | |||||
| * | | | | | | | | | Config resoution order correction and documentation. | Richard C Isaacson | 2014-02-14 | 3 | -19/+29 |
|/ / / / / / / / / | |||||
* | | | | | | | | | Merge pull request #6015 from angstwad/docfix | Richard Isaacson | 2014-02-14 | 1 | -1/+1 |
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Spelling correction. | ||||
| * | | | | | | | | | Spelling correction | Paul Durivage | 2014-02-14 | 1 | -1/+1 |
| | | | | | | | | | | |||||
* | | | | | | | | | | Merge pull request #5645 from resmo/fix/apt_pkg_version | Richard Isaacson | 2014-02-14 | 1 | -1/+1 |
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | apt: fixed pkg=<name>=<version> fails if package is not yet installed. Tested and it fixes the problem on more recent versions of apt. | ||||
| * | | | | | | | | | | apt: fixed pkg=<name>=<version> fails if package is not yet installed. | Rene Moser | 2014-01-16 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reported and patch provided by https://github.com/msolo. Closes GH-5625. | ||||
* | | | | | | | | | | | Merge pull request #6014 from amirhhz/patch-1 | James Cammarata | 2014-02-14 | 1 | -1/+1 |
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / |/| | | | | | | | | | | Remove superfluous/invalid quote | ||||
| * | | | | | | | | | | Remove superfluous/invalid quote | Amir H. Hajizamani | 2014-02-14 | 1 | -1/+1 |
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | Allow the example to be copy-pasted with minimal confusion about the error. | ||||
* | | | | | | | | | | Merge branch 'allow-equals-in-ini-vars' of ↵ | James Cammarata | 2014-02-14 | 3 | -2/+10 |
|\ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | | https://github.com/worklez/ansible into worklez-allow-equals-in-ini-vars | ||||
| * | | | | | | | | | Allow equal sign in single-line ini variables | Ilya Kuznetsov | 2014-02-14 | 3 | -2/+10 |
| | | | | | | | | | | |||||
* | | | | | | | | | | Merge pull request #6001 from jimi-c/issue_4087_sanitize_output | James Cammarata | 2014-02-14 | 3 | -2/+52 |
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | | Filter out messages that match the pattern username:password@host | ||||
| * | | | | | | | | | Filter out messages that match the pattern username:password@host | James Cammarata | 2014-02-13 | 3 | -2/+52 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This filtering is done in both the module invocation logging and in the regular verbose() logging output. Fixes #4087 | ||||
* | | | | | | | | | | Update CHANGELOG.md | Michael DeHaan | 2014-02-14 | 1 | -0/+1 |
| | | | | | | | | | | |||||
* | | | | | | | | | | Remove fixme and extraneous file. | Michael DeHaan | 2014-02-14 | 2 | -3/+0 |
| | | | | | | | | | |