- 24 Aug, 2012 4 commits
-
-
Subversion
Michael DeHaan committed -
Allow change of ownership and checks for existing database
Michael DeHaan committed -
Change semantics of postgresql_user module
Michael DeHaan committed -
Add the wait_for module.
Michael DeHaan committed
-
- 23 Aug, 2012 8 commits
-
-
Issue #935: filter out __init__ module from the list of callbacks
Michael DeHaan committed -
Ludovic Claude committed
-
This module waits until a specific port on a given host can be connected to.
Jeroen Hoekx committed -
scope error with utils.py branch_path
Michael DeHaan committed -
Derek Carter committed
-
Dane Summers committed
-
added force option to git - made both subversion and git default to force=true for backward compatibility with git's previous behavior
Dane Summers committed -
Dane Summers committed
-
- 22 Aug, 2012 11 commits
-
-
Fix git version when some head files are missing.
Michael DeHaan committed -
fix _gitinfo function to avoid ansible crashing in cases where the branch file is missing (e.g. after a gc)
Pepe Barbe committed -
Pepe Barbe committed
-
Pepe Barbe committed
-
Pepe Barbe committed
-
Use a different method to query for current privileges at the table and database level. This method is more robust if newer privileges are added in future versions and also supports the ALL wildcard.
Pepe Barbe committed -
fail_on_user option can be used to ignore silently if the user cannot be removed because of remaining privilege dependencies to other objects in the database. By default it will fail, so that this new behavior won't surprise unsuspecting users.
Pepe Barbe committed -
The postgresql_user module has several drawbacks: * No granularity for privileges * PostgreSQL semantics force working on one database at time, at least for Tables. Which means that a single call can't remove all the privileges for a user, and a user can't be removed until all the privileges are removed, forcing a module failure with no way to work around the issue. Changes: * Added the ability to specify granular privileges for database and tables within the database * Report if user was removed, and add an option to disable failing if user is not removed.
Pepe Barbe committed -
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
- 21 Aug, 2012 7 commits
-
-
Dane Summers committed
-
Dane Summers committed
-
Michael DeHaan committed
-
Handle special files just like normal files
Michael DeHaan committed -
As discussed in #923
Dag Wieërs committed -
Fix off-by-one serial count (causing infinite loop for serial == 1).
Michael DeHaan committed -
Dave Peticolas committed
-
- 20 Aug, 2012 10 commits
-
-
Moved inventory scripts to the ansible/ansible-plugins repo so they can be updated independent of release.
Michael DeHaan committed -
Adds a thirsty=yes|no to the get_url module, such that if downloading a large file from the internet you can decide whether to download it every time or not -- will replace only on change, or decide to not download. The default is thirsty=no which will not download every time by default.
Michael DeHaan committed -
Michael DeHaan committed
-
The 'hostname' variable is then unicode, which breaks interpolating stdout etc. contents into the output strings (they are bytes and cannot be converted to Unicode using ASCII codec)
Grzegorz Nosek committed -
Paramiko does not allow Unicode strings as parameters, so encode the command to UTF-8. Test case: ansible localhost -m raw -a 'echo ą' (also tested on local and ssh transports without problems)
Grzegorz Nosek committed -
This is required to run commands containing non-ASCII characters, e.g.: ansible localhost -m shell -a 'echo ą'
Grzegorz Nosek committed -
delegates. Closes #905
Tim Bielawa committed -
Point to the proper config file
Michael DeHaan committed -
The global config file is loaded from /etc/ansible, not /etc
Grzegorz Nosek committed -
Fix setup module explosion when a route is empty. Closes #909
Michael DeHaan committed
-