- 29 Aug, 2014 5 commits
-
-
This changes the get-attr function slightly, and lets the module specify whether a param is needed and auto-fails if it is not present. A module can now verify params like so:: $params = Parse-Args $args; $result = New-Object psobject; Set-Attr $result "changed" $false; $path = Get-Attr -obj $params -name path -failifempty $true -resultobj $result or $params = Parse-Args $args; $result = New-Object psobject; Set-Attr $result "changed" $false; $path = Get-Attr -obj $params -name path -failifempty $true -emptyattributefailmessage "Oh man. You forgot the main part!" -resultobj $result slight tweak in how the powershell module converts to json in order to support nested objects (allows for more complex facts, among others) This script gathers some extended facts on windows hosts in a json array attribute called "ansible_interfaces". This info is needed for some network-related modules I'm working on. Required the update to powershell.ps1 to return deeply nested json objects.
Trond Hindenes committed -
James Cammarata committed
-
James Cammarata committed
-
Replace Get-FileHash with MD5 code that works on PowerShell 3.
Chris Church committed -
* moved common code to an module_util snippet * rewrote logic to make each module idempotent * added new capabilities like the write_config option
James Cammarata committed
-
- 28 Aug, 2014 6 commits
-
-
Don't use ternary if statements. Fixes #8784
Michael DeHaan committed -
James Cammarata committed
-
Fixes #8799
James Cammarata committed -
James Cammarata committed
-
Chris Church committed
-
Matt Martz committed
-
- 27 Aug, 2014 16 commits
-
-
Fix typo: `active` -> `activate`
Michael DeHaan committed -
Michael DeHaan committed
-
James Cammarata committed
-
James Cammarata committed
-
James Cammarata committed
-
James Cammarata committed
-
James Cammarata committed
-
Victor Lin committed
-
Victor Lin committed
-
Victor Lin committed
-
Victor Lin committed
-
Victor Lin committed
-
James Cammarata committed
-
Also updates the version_added and other references to the version in which the connection draining functionality was added.
James Cammarata committed
-
- 26 Aug, 2014 13 commits
-
-
Redo of original patch, which adds an additional check to ensure the known_hosts file isn't trampled when host_key_checking is disabled. Fixes #8169
James Cammarata committed -
James Cammarata committed
-
Fixes #8278
James Cammarata committed -
James Cammarata committed
-
Michael Warkentin committed
-
Merge branch 'feature/makes-ec2-lc-boto-iso-functional' of https://github.com/botify-labs/ansible into botify-labs-feature/makes-ec2-lc-boto-iso-functional
James Cammarata committed -
ansible-vault: The correct option is password_file. Fixes #8752
James Cammarata committed -
James Cammarata committed
-
Also minor fixes like adjusting version_added fields, etc.
James Cammarata committed -
Also fixes missing doc fragments missing in template and assemble
James Cammarata committed -
Matt Martz committed
-
James Cammarata committed
-