- 18 Dec, 2012 4 commits
-
-
Make all lookup plugins accept lists as arguments
Michael DeHaan committed -
Alphabetic inventory hostname patterns.
Michael DeHaan committed -
Allows whitespaces around assignment operators when defining group variables
Michael DeHaan committed -
fix documentation for authorized_key in advanced playbooks page in docsite
Michael DeHaan committed
-
- 17 Dec, 2012 1 commit
-
-
Javier Candeira committed
-
- 16 Dec, 2012 2 commits
-
-
Allow parameterized playbook includes to define complex variables
Michael DeHaan committed -
Junegunn Choi committed
-
- 15 Dec, 2012 9 commits
-
-
To be used like: - include: playbook.yml vars: mylistvar: - item1 - item2Daniel Hokka Zakrisson committed -
Lookup plugins should accept a string or a list, and always return a list, even if it is just one item.
Daniel Hokka Zakrisson committed -
Change message when a play matches no hosts
Michael DeHaan committed -
change error message on check_conditional when variable does not exist
Michael DeHaan committed -
Make use of yes/no booleans in playbooks
Michael DeHaan committed -
fixes #1767 parsing serial from extra_vars
Michael DeHaan committed -
fix and clarify 'script' docs
Daniel Hokka Zakrisson committed -
Fix hostname expansion bug in inventory parser
Daniel Hokka Zakrisson committed -
Junegunn Choi committed
-
- 14 Dec, 2012 10 commits
-
-
Nandor Sivok committed
-
cleanup Example output in ansible-doc
Stephen Fromm committed -
Nandor Sivok committed
-
when defining group variables
Junegunn Choi committed -
At the moment Ansible prefers yes/no for module booleans, however booleans in playbooks are still using True/False, rather than yes/no. This changes modifies boolean uses in playbooks (and man pages) to favor yes/no rather than True/False. This change includes: - Adaptation of documentation and examples to favor yes/no - Modification to manpage output to favor yes/no (the docsite output already favors yes/no)
Dag Wieers committed -
Jan-Piet Mens committed
-
Jan-Piet Mens committed
-
fdavis committed
-
Ensure files created by authorized_key have correct selinux context
Stephen Fromm committed -
Three changes: * Add set_default_selinux_context() to module_common that sets a file's context according to the defaults in the policy * In atomic_replace(), set the default context for the file if selinux is enabled and the destination file does not exist. * In authorized_key, set the default context when creating $HOME/.ssh and $HOME/.ssh/authorized_keys. If these already exist, this won't touch them.
Stephen Fromm committed
-
- 13 Dec, 2012 5 commits
-
-
Missing colon in $FILE example docs
Daniel Hokka Zakrisson committed -
jkleint committed
-
Subverion module improvements
Michael DeHaan committed -
I guess my previous pull request was confusing, by changing the message to something we already do for tasks, it makes it more clear. Just like we say: TASK: [foo bar] skipping: [system01] The message now is more clear: PLAY [wagawaga] ******************************* skipping: no hosts matched It makes it clear that we are skipping the play, just as is done for a task when a condition is not met.Dag Wieers committed -
mail module: add MIME attachments, port and addresses with phrases
Michael DeHaan committed
-
- 12 Dec, 2012 9 commits
-
-
Norman J. Harman Jr committed
-
add list-hosts support to bin/ansible
Michael DeHaan committed -
Allow regex to be used to select hosts in addition to fnmatch pattern
Michael DeHaan committed -
Allow intersecting host patterns by using &
Michael DeHaan committed -
Fix ppa syntax in apt_repository module doc
Michael DeHaan committed -
ansible-doc: print Notes heading only if there are any
Michael DeHaan committed -
pip module improvements
Michael DeHaan committed -
Tweak docs for correct paths and filenames for ec2 inventory
Michael DeHaan committed -
- Do not silently ignore malformed pip requirements files. - Properly reports changed when removing packages. - "latest" i.e. --upgrade is *not* incompatible with requirements files. - Less branchy, simpler logic. - Removed pointless variable "initializations", Python doesn't need that. Other code simplifications. - Fun fact; pip install is (kind of) case insensitive, pip freeze is not. So, 'sqlalchemy' will be reported as installed by install, but missing by freeze. The perhaps controversial change and the one that led to finding / fixing above issues... Instead of adding command parameters 'index', and 'find', and 'mirrors', and etc. Added 'extra_args' which are passed onto pip. The use case for --index-url is having a private pypi repo, like http://pypi.python.org/pypi/localshop, to which you publish private packages. I'm sure most every pip option has a use case for someone. extra_args handles all those. Can reserve ansible command parameters for the most common. Tested with pip 1.1.
Norman J. Harman Jr committed
-