- 22 Apr, 2013 1 commit
-
-
Lester Wade committed
-
- 19 Apr, 2013 5 commits
-
-
Typo in example, extra space breaks playbook.
Michael DeHaan committed -
jtsoi committed
-
Michael DeHaan committed
-
Small spelling correction to authorized_key module docs
Michael DeHaan committed -
Nathan L. Walls committed
-
- 18 Apr, 2013 6 commits
-
-
clean up first_found to fix a few issues:
Michael DeHaan committed -
- add a skip option so it won't raise an exception if you don't match anything - make it work as a drop-in replacement for first_available_file - document in the module comments all of the above cases
Seth Vidal committed -
Revert "make atomic_replace use shutil.copy2 instead of os.rename() so it will work across filesystems". AR function was leaving some tmp files behind, want to revert, will have better implementation soon, this is the old way now. This reverts commit f74a1fa4.
Michael DeHaan committed -
correct reference to module
Michael DeHaan committed -
lwade committed
-
(B) allow registration with ignore_errors: True
Michael DeHaan committed
-
- 17 Apr, 2013 13 commits
-
-
Fix if-statement that always evaluates True
Michael DeHaan committed -
Bernhard Weitzhofer committed
-
Fix 'sequence' plugin error.
Michael DeHaan committed -
If 'terms' is a string, replace it with a single item list.
C. Morgan Hamill committed -
Fix errors in lookup plugins.
Michael DeHaan committed -
Lookup plugins 'sequence' and 'template' now import 'ansible.utils' appropriately in order to use the 'listify_lookup_plugin_terms' function. Also, 'dnstxt' and 'env' now check to see if 'terms' is a string; without this calls like '{{ lookup('env', 'HOME') }}' fail.
C. Morgan Hamill committed -
Michael DeHaan committed
-
ec2_facts: add ansible_ec2_placement_region key/value pair for EC2 regio...
Michael DeHaan committed -
The copy action accepts force=no, which tells it not to replace an existing file even if it differs from the source. The copy action plug-in wasn't respecting this option when operated in check mode, so it would report that changes are necessary in check mode even though copy would make no changes when run normally. Runner._remote_md5 was changed to make the logic for setting rc perhaps a little more clear, and to make sure that rc=0 when the file does not exist.
Dale Sedivec committed -
Add availability zone parameter
Michael DeHaan committed -
Michael DeHaan committed
-
Michael DeHaan committed
-
git://github.com/laggyluke/ansible
Conflicts: lib/ansible/inventory/vars_plugins/group_vars.py lib/ansible/runner/__init__.py lib/ansible/utils/__init__.py test/TestPlayBook.py
Michael DeHaan committed
-
- 16 Apr, 2013 11 commits
-
-
Look for a file with the base name of the group/host, first without a file extension, then with a '.yml' extension, and, finally, with a '.yaml' extension, loading vars from only the first one found.
C. Morgan Hamill committed -
Ec2 vol improvements
Michael DeHaan committed -
Minor fixes to the rax module
Michael DeHaan committed -
Michael DeHaan committed
-
Make more lookup plugins tolerant of new variable system, with a little better 'do what I mean' logic to resolving what happens if you get a string back as a template result.
Michael DeHaan committed -
Make more lookup plugins happy with newstyle variables. Not quite done, but this fixes up with_items/with_nested/file/fileglob.
Michael DeHaan committed -
Atomic replace and cron
Michael DeHaan committed -
work across filesystems
Seth Vidal committed -
means ln and os.rename() won't work across fs.
Seth Vidal committed -
Even though others are possible, fail early on unsupported ones.
Jesse Keating committed -
Only list the services supported Don't put in unncessary required: false Use better formatting for the example
Jesse Keating committed
-
- 14 Apr, 2013 2 commits
-
-
Michael DeHaan committed
-
Proposal for a module to manage PostgreSQL privileges (2)
Michael DeHaan committed
-
- 13 Apr, 2013 2 commits
-
-
user module: return public SSH key
Michael DeHaan committed -
This Module allows to manage privileges on PostgreSQL database objects (currently: tables, sequences, functions, databases, schemas, languages and tablespaces) as well as group role memberships. It is basically a wrapper around most of the functionality of PostgreSQL's GRANT and REVOKE statements with additional detection of changes and support for dry-runs (check-mode). postgresql_privs should work with PostgreSQL 8.4 and above. Python Module psycopg2 is required on the remote host.
Bernhard Weitzhofer committed
-