- 21 Aug, 2012 1 commit
-
-
As discussed in #923
Dag Wieërs committed
-
- 20 Aug, 2012 10 commits
-
-
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 -
Tim Bielawa committed
-
- 19 Aug, 2012 5 commits
-
-
Michael DeHaan committed
-
setup.py needs adjusting to ansible.runner.connections
Michael DeHaan committed -
Dave Hatton committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
- 18 Aug, 2012 18 commits
-
-
Michael DeHaan committed
-
Change the order the setup cache is used to update things, such that the example/playbooks/conditional_part1.yml file works as advertised
Michael DeHaan committed -
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Adds the 'serial' keyword to a playbook which controls how many hosts can be running through a playbook at a single time. The default is 0, which means all hosts. If set to 1, each host would run a playbook all the way through before moving on the next host. Fact gathering is still parallel, regardless of the serial setting.
Michael DeHaan committed -
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Add pattern option to service module
Michael DeHaan committed -
Work with tun and p2p interfaces
Michael DeHaan committed -
Retrieve pip path after creating virtualenv
Michael DeHaan committed -
Fixes for postgresql_user to make it work with postgresql defaults and under Python 2.4
Michael DeHaan committed -
Syntax changes necessary to make test-module work with Python 2.4
Michael DeHaan committed -
Return both stdout and stderr on pip failures.
Michael DeHaan committed
-
- 17 Aug, 2012 6 commits
-
-
Adds ability to check service status based on pattern. The pattern is a simple string. If a pattern is provided, the output of ps is checked first.
Stephen Fromm committed -
Daniel Hokka Zakrisson committed
-
Retrieve the pip path after creating a non-existent virtualenv. Prevents the problem of using the wrong pip if virtualenv doesn't exist yet.
Lorin Hochstein committed -
Pepe Barbe committed
-
Pepe Barbe committed
-
pip failure message sometimes (always?) go to standard out. Return both standard out and standard error when there's a failure.
Lorin Hochstein committed
-