- 31 Aug, 2014 3 commits
-
-
Chris Church committed
-
Merge pull request #8833 from jhawkesworth/win_facts_powershell_version_and_winrm_cert_expiry_revised Revised additions to windows facts
Chris Church committed -
Jon Hawkesworth committed
-
- 29 Aug, 2014 8 commits
-
-
win_json_facts_setup_improvements; All changes referenced in PRs #8767 , #8768 , #8769
Chris Church committed -
Adds us-gov-west-1 aws ec2 region to cloud library
James Cammarata committed -
Formation, Format, and Constiency
James Cammarata committed -
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 8 commits
-
-
There should be a period after "Various release-X.Y branches exist for previous releases". It should read "Various release-X.Y branches exist for previous releases." This should keep the Branch Info listings consistent.
freshlikeesch committed -
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
-
Jonathan Richard Henry Evans (JRHE) 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 5 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
-