summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* use correct permission mode when installingcgtx2014-02-181-6/+8
|
* Merge pull request #6052 from resmo/patch-1Michael DeHaan2014-02-181-1/+1
|\ | | | | Docsite: Fixed typo.
| * Docsite: Fixed typo.René Moser2014-02-181-1/+1
|/
* Avoid breaking on unicode input when logging to syslog in modulesMartin Thorsen Ranang2014-02-173-2/+35
| | | | After commit 254f87e, non-ascii input broke logging to syslog.
* Merge branch 'devel' of https://github.com/calebbrown/ansible into ↵James Cammarata2014-02-171-1/+1
|\ | | | | | | calebbrown-devel
| * Fix a bug in "hg" module so that `pull` is not set to a version.Caleb Brown2014-01-231-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 Cammarata2014-02-172-1/+22
|\ \ | | | | | | | | | jirutka-fix-5679
| * | Fixes #5679: lineinfile ignores newline in line argumentJakub Jirutka2014-01-192-1/+22
| | |
* | | Tweak library installation path to default to /usr/share/ansible if specifiedJames Cammarata2014-02-171-1/+7
| | |
* | | Merge branch 'patch-1' of https://github.com/eggsby/ansible into eggsby-patch-1James Cammarata2014-02-171-1/+2
|\ \ \
| * | | bugfix: support path separators in module pathThomas Omans2014-01-151-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 modulesJames Cammarata2014-02-171-1/+4
| | | |
* | | | Sanitize sudo success_key from stdout for raw/script modulesJames Cammarata2014-02-171-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #5533 Closes #5605 Closes #5606 Closes #5607
* | | | Merge pull request #6043 from risaacson/pull_4703Richard Isaacson2014-02-172-0/+0
|\ \ \ \ | | | | | | | | | | I had to remerge this as the original would not automerge. #4703
| * | | | Merge remote-tracking branch 'berendt/fixing_permissions' into pull_4703Richard C Isaacson2014-02-172-0/+0
|/| | | |
| * | | | changing permissions of modules to 0644Christian Berendt2013-10-282-0/+0
| | | | |
* | | | | Merge pull request #6038 from mmoya/docfixMichael DeHaan2014-02-172-9/+12
|\ \ \ \ \ | | | | | | | | | | | | Doc improvements / fixes
| * | | | | Add link (with minor rewording) to jinja2 builtin filtersMaykel Moya2014-02-171-2/+3
| | | | | |
| * | | | | Add link to ansible-examples repoMaykel Moya2014-02-171-1/+3
| | | | | |
| * | | | | Fix path to index.html when launching browserMaykel Moya2014-02-171-1/+1
| | | | | |
| * | | | | Uniform spacing across all filter examplesMaykel Moya2014-02-171-4/+4
| | | | | |
| * | | | | Filter name is singularMaykel Moya2014-02-171-1/+1
| | | | | |
* | | | | | Merge branch 'fix-postgres_user_to_understand_pg_namespaces' of ↵James Cammarata2014-02-171-2/+21
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | https://github.com/alanfairless/ansible into alanfairless-fix-postgres_user_to_understand_pg_namespaces
| * | | | | | Fix postgresql_user to understand PG namespacesAlan Fairless2014-01-041-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 Cammarata2014-02-171-3/+13
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | jinnko-postgres_alter_role Conflicts: library/database/postgresql_user
| * | | | | | postgresql_user module: Gracefully handle ALTER ROLE on read-only postgres ↵Jinn Koriech2013-12-311-3/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | servers.
* | | | | | | add note about pipeliningMichael DeHaan2014-02-152-1/+33
| | | | | | |
* | | | | | | Add sudo note.Michael DeHaan2014-02-151-0/+8
| | | | | | |
* | | | | | | Document ansible_managed changing the template.Michael DeHaan2014-02-152-1/+5
| | | | | | |
* | | | | | | Some minor docs corrections.Michael DeHaan2014-02-152-1/+4
| | | | | | |
* | | | | | | Document "|default" Jinja2 filter example.Michael DeHaan2014-02-151-0/+13
| | | | | | |
* | | | | | | Fixing usage string in ansible-galaxy install for role filesJames Cammarata2014-02-151-1/+1
| | | | | | |
* | | | | | | Merge branch 'mohangk-fix_rds_modify_security_group' into develJames Cammarata2014-02-151-13/+27
|\ \ \ \ \ \ \
| * \ \ \ \ \ \ Merge branch 'fix_rds_modify_security_group' of ↵James Cammarata2014-02-141-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 Krishnan2014-02-101-13/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | security groups of RDS instances within a VPC
* | | | | | | | | Merge pull request #6021 from risaacson/issue_5359_2Richard Isaacson2014-02-143-19/+29
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Config resoution order correction and documentation.
| * | | | | | | | | Minor existing typo fix.Richard C Isaacson2014-02-141-1/+1
| | | | | | | | | |
| * | | | | | | | | Config resoution order correction and documentation.Richard C Isaacson2014-02-143-19/+29
|/ / / / / / / / /
* | | | | | | | | Merge pull request #6015 from angstwad/docfixRichard Isaacson2014-02-141-1/+1
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Spelling correction.
| * | | | | | | | | Spelling correctionPaul Durivage2014-02-141-1/+1
| | | | | | | | | |
* | | | | | | | | | Merge pull request #5645 from resmo/fix/apt_pkg_versionRichard Isaacson2014-02-141-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 Moser2014-01-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reported and patch provided by https://github.com/msolo. Closes GH-5625.
* | | | | | | | | | | Merge pull request #6014 from amirhhz/patch-1James Cammarata2014-02-141-1/+1
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / |/| | | | | | | | | | Remove superfluous/invalid quote
| * | | | | | | | | | Remove superfluous/invalid quoteAmir H. Hajizamani2014-02-141-1/+1
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | Allow the example to be copy-pasted with minimal confusion about the error.
* | | | | | | | | | Merge branch 'allow-equals-in-ini-vars' of ↵James Cammarata2014-02-143-2/+10
|\ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | https://github.com/worklez/ansible into worklez-allow-equals-in-ini-vars
| * | | | | | | | | Allow equal sign in single-line ini variablesIlya Kuznetsov2014-02-143-2/+10
| | | | | | | | | |
* | | | | | | | | | Merge pull request #6001 from jimi-c/issue_4087_sanitize_outputJames Cammarata2014-02-143-2/+52
|\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | | Filter out messages that match the pattern username:password@host
| * | | | | | | | | Filter out messages that match the pattern username:password@hostJames Cammarata2014-02-133-2/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This filtering is done in both the module invocation logging and in the regular verbose() logging output. Fixes #4087
* | | | | | | | | | Update CHANGELOG.mdMichael DeHaan2014-02-141-0/+1
| | | | | | | | | |
* | | | | | | | | | Remove fixme and extraneous file.Michael DeHaan2014-02-142-3/+0
| | | | | | | | | |