- 13 Apr, 2015 21 commits
-
-
ian committed
-
Several more changes to support python3 syntax.
Toshio Kuratomi committed -
Fixed wrong example of 'environment' for setting PATH
Brian Coca committed -
ian committed
-
eroldan committed
-
Added an example for paretheses
Toshio Kuratomi committed -
Change exceptions to python3 syntax.
Toshio Kuratomi committed -
Add setup.py for v2 to allow for pip editable installs.
Toshio Kuratomi committed -
Dorian Pula committed
-
ian committed
-
Fix re import failure in templates module when running unit tests.
Toshio Kuratomi committed -
Dorian Pula committed
-
Some grammatical updates
Toshio Kuratomi committed -
Brian Coca committed
-
Brian Coca committed
-
fix for when calling bootinfo throws permmission errors (AIX)
Brian Coca committed -
Fix --force-handlers, and allow it in plays and ansible.cfg
Brian Coca committed -
Brian Coca committed
-
an ansible inventory garnered from fleetctl
Brian Coca committed -
Fixed changelog typos
Brian Coca committed -
Andrew Murray committed
-
- 11 Apr, 2015 5 commits
-
-
Don't convert numbers and booleans to strings.
Toshio Kuratomi committed -
Before this change if a variable was of type int or bool and the variable was referenced by another variable, the type would change to string. eg. defaults/main.yml ``` PORT: 4567 OTHER_CONFIG: secret1: "so_secret" secret2: "even_more_secret" CONFIG: hostname: "some_hostname" port: "{{ PORT }}" secrets: "{{ OTHER_CONFIG }}" ``` If you output `CONFIG` to json or yaml, the port would get represented in the output as a string instead of as a number, but secrets would get represented as a dictionary. This is a mis-match in behaviour where some "types" are retained and others are not. This change should fix the issue. Update template test to also test var retainment. Make the template changes in v2. Update to only short-circuit for booleans and numbers. Added an entry to the changelog.
Feanil Patel committed -
Tests for win_user module
Chris Church committed -
Chris Church committed
-
Chris Church committed
-
- 10 Apr, 2015 4 commits
-
-
The --force-handlers command line argument was not correctly running handlers on hosts which had tasks that later failed. This corrects that, and also allows you to specify force_handlers in ansible.cfg or in a play.
Jesse Rusak committed -
backup_local now only tries to back up exising files, returns '' otherwise
Brian Coca committed -
Toshio Kuratomi committed
-
Toshio Kuratomi committed
-
- 09 Apr, 2015 10 commits
-
-
Update windows documentation to indicate how to specify kerberos auth.
Brian Coca committed -
Chris Church committed
-
WinRM Connection Fixes
Brian Coca committed -
Chris Church committed
-
Only try kerberos auth when username contains `@` and pass realm to pywinrm. Alternative to #10644, fixes #10577.
Chris Church committed -
Use codecs module while reading & writing json cache file
Toshio Kuratomi committed -
Chris Church committed
-
Changes to api in FreeIPA > 4.0 compatibility fix.
Brian Coca committed -
Improve generation of debian changelog
Brian Coca committed -
James Laska committed
-