- 29 Sep, 2012 3 commits
-
-
Michael DeHaan committed
-
removed EXAMPLES from ini_file
Michael DeHaan committed -
module DOCUMENTATION for apt, apt_respository cleanup
Michael DeHaan committed
-
- 28 Sep, 2012 24 commits
-
-
Jan-Piet Mens committed
-
testing YAML in YAML: small glitch in rst template; a </pre></p> is outdented and causes messy display
Jan-Piet Mens committed -
Added documentation to APT module
Michael DeHaan committed -
Fix to make sure only strings are being joined
Michael DeHaan committed -
Module DOCUMENTATION for template, wait_for, and yum
Michael DeHaan committed -
Module DOCUMENTATION: assemble, authorized_key, command, copy
Michael DeHaan committed -
Close zeromq context and socket.
Michael DeHaan committed -
Jan-Piet Mens committed
-
Marco Vito Moscaritolo committed
-
Marco Vito Moscaritolo committed
-
Marco Vito Moscaritolo committed
-
plus a small fix in rst.j2 template manpages generated & checked modules.html generated & checked
Jan-Piet Mens committed -
Since BOOLEANS also contains integers, joining the list returns an error. Easy to test by giving a wrong value to a boolean argument: service name=httpd enabled=True Since True is not in the allowed BOOLEANS, it will cause the error, which in its turn bails out because it joins strings and integers. We may want to remove the integers from the choices since '0' and '1' are already in the list as strings. Personally I would expect only strings as arguments, not sure where these could be integers ??
Dag Wieers committed -
Ralph Bean committed
-
module_formatter fixes
Michael DeHaan committed -
Revert pull request #1091
Michael DeHaan committed -
Automatic quoting of variables in only_if breaks existing playbooks where entire statements are put in a variable, and other cases. See issue #1120 for details.
Daniel Hokka Zakrisson committed -
Jan-Piet Mens committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Various tweaking to get the module formatter to work for 'make docs' in the docs project. Likely the templates for other module formatting types will have to change by the time I'm done.
Michael DeHaan committed
-
- 27 Sep, 2012 13 commits
-
-
Revert only_if for variables and templating prompt, little practical use
Michael DeHaan committed -
Since the condition was not templated, it wasn't working. Only variables in local scope were used, which made this not very practical
Dag Wieers committed -
New module: manipulate INI-style settings
Michael DeHaan committed -
This fixes a few issues, - ${foo}${bar} would be parsed as a variable named foo}${bar, which wouldn't be easily fixed without breaking ${foo.${bar}} - allows escaping . in variable parts so e.g. ${hostvars.{test.example.com}.foo} works This is slower than using re. 3 million templating calls take about about twice as long to complete with this compared to the regexp, from ~65 seconds to ~115 seconds on my laptop.
Daniel Hokka Zakrisson committed -
Fix only_if statements referencing non-string types
Michael DeHaan committed -
Remove assemble action plugin, fix daisychaining
Michael DeHaan committed -
Strip trailing white space from $FILE()/$PIPE()
Michael DeHaan committed -
Jan-Piet Mens committed
-
This fixes e.g. only_if: ${task.changed} which would always evaluate to true due to it having been replaced by a string for its boolean value. Also adds a test case to ensure it doesn't get missed again.
Daniel Hokka Zakrisson committed -
Daniel Hokka Zakrisson committed
-
Don't use ssh-agent if password is specified.
Michael DeHaan committed -
Aleksej Romanov committed