- 17 Dec, 2012 1 commit
-
-
Gregory Duchatelet committed
-
- 16 Dec, 2012 1 commit
-
-
Allow parameterized playbook includes to define complex variables
Michael DeHaan committed
-
- 15 Dec, 2012 8 commits
-
-
To be used like: - include: playbook.yml vars: mylistvar: - item1 - item2
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 9 commits
-
-
Nandor Sivok committed
-
cleanup Example output in ansible-doc
Stephen Fromm committed -
Nandor Sivok 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 16 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 -
if user has manually installed an intermediate version - don't ignore it...
Daniel Hokka Zakrisson committed -
Seth Vidal committed
-
This allows patterns such as webservers:!debian:&datacenter1 to target hosts in the webservers group, that are not in the debian group, but are in the datacenter1 group. It also parses patterns left to right.
Daniel Hokka Zakrisson committed -
Mark Theunissen committed
-
make --list-hosts expand out extra vars in the hosts: field
Daniel Hokka Zakrisson committed -
Add HTML-escaping to code examples in rST tempate of module-formatter Add support for specifying port, addresses with phrases and attaching files Add support for custom headers and document version_added for new options X-Mailer header added :) protect empty address lists & attachment list, and add bcc
Jan-Piet Mens committed -
The example for using a ppa had the wrong syntax. Ironically, the correct syntax is illustrated in a comment on line 23.
Lorin Hochstein committed
-