- 19 May, 2013 4 commits
-
-
Excplicity set paramiko's logging level to WARNING. By default it inherits ansible's DEBUG logging level (set in callbacks.py) and fills the log file with useless debug messages. Obviously it only applies if log_path is set in ansible.cfg
Dimos Alevizos committed -
pip module blowing up when name is not included in arg list
Michael DeHaan committed -
This code: ``` if name.endswith('.tar.gz') or name.endswith('.tar.bz2') or name.endswith('.zip'): is_tar = True ``` was not checking whether name is defined since it is an optional param.
John Jarvis committed -
Don't hardcode chroot path
Michael DeHaan committed
-
- 18 May, 2013 26 commits
-
-
fixing syntax error
Michael DeHaan committed -
John Jarvis committed
-
Maykel Moya committed
-
Maykel Moya committed
-
Add vim swap files to gitignore
Michael DeHaan committed -
Darren Worrall committed
-
Fixes in apt module doc: typos, examples
Michael DeHaan committed -
Fix empty requirements specifications in modules documentation
Michael DeHaan committed -
no uses get_bin_path for 2nd use of ip tool
Michael DeHaan committed -
-o and -r option don't exist on AIX
Michael DeHaan committed -
Ben Ritcey committed
-
Add support for crypted passwords to password lookup
Michael DeHaan committed -
Add an update option to the git module
Michael DeHaan committed -
apt now uses module function to find bin paths
Michael DeHaan committed -
flowdock module returns changed=false on succes
Michael DeHaan committed -
Fix registered variable usage example
Michael DeHaan committed -
fix package mentioned twice in setup.py
Michael DeHaan committed -
update archlinux PKGBUILD for pacman 4.1
Michael DeHaan committed -
Added a helpful example to the ec2_facts doc.
Michael DeHaan committed -
Campfire Notification Module: Typo fixes, tighter error handling, corrected check mode support
Michael DeHaan committed -
Ton Kersten committed
-
jabber module returns changed=false on success
Michael DeHaan committed -
notification modules irc, mqtt now exit with changed=False
Michael DeHaan committed -
Make package version comparison use globbing.
Michael DeHaan committed -
Pip's name key can now accept remote package address.
Michael DeHaan committed -
**Summary**: There was a bug in the previous commit; pip module would add --use-mirrors options to a source package when state is absent. The bug is resolved in this commit by checking ``not is_package`` in the if branch. Furthermore, in order to support non-vcs source name like tarballs, we must not add -e option to the arg list. Given this circumstance, this commit have is_tar and is_vcs and the latter is checked to add -e option. Since mirrors do not make sense with vcs or tarball source, this commit will not add --use-mirrors (default to True) as always.
Yeukhon Wong committed
-
- 17 May, 2013 1 commit
-
-
JcB committed
-
- 16 May, 2013 9 commits
-
-
Fix for issue #2916 : for each host promote the host variables as global...
Michael DeHaan committed -
Fix for issue #2916 : for each host promote the host variables as globally scoped variables for the sake of the groups determination
Stoned Elipot committed -
Maykel Moya committed
-
And also be liberal in what ansible-doc accepts as an empty requirements specification. While here fix a typo in template module documentation wrt jinja2 overrides example.
Stoned Elipot committed -
module needs this added to many tool invokations, but his is a start Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
Brian Coca committed -
madema committed
-
Added new parameter 'encrypt' with same semantics from that of vars_prompt. When encryption is requested a random salt will be generated and stored along the password in the form: '<password> salt=<salt>'. Also store passwords with an ending '\n' for easier looking at files with console tools. File content was being already rstripped so this is harmless.
Maykel Moya committed -
This will allow just making sure the repo exists w/out actually making any chnages to it. Useful if you're going to run a play repeatedly against a host that might have active development going on in the repository (think initial bootstrap of a developers system, and continued playbook runs to work on other projects).
Jesse Keating committed -
Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
Brian Coca committed
-