Jon Hawkesworth
a57b6ccf46
This change selects the certificate from the winrm configuration and attempts to find the expiry date from that.
...
Trond Hindenes pointed out that simply picking the first certificate from local computer certs is not guaranteed to select the correct certificate.
10 years ago
Oleg Bulatov
a7d38702d9
Fix #7711
...
Fix relative symlinks creation in file module
Signed-off-by: Oleg Bulatov <oleg@bulatov.me>
10 years ago
Rene Moser
20a3772d85
zabbix_maintenance: move to new boilerplate
10 years ago
Chris Church
dac11904cb
Add tests for new windows facts.
10 years ago
Chris Church
b068155a43
Merge pull request #8833 from jhawkesworth/win_facts_powershell_version_and_winrm_cert_expiry_revised
...
Revised additions to windows facts
10 years ago
Jon Hawkesworth
e4b80dd43c
Added null check in case http connection used and no cert found.
10 years ago
Sterling Windmill
0c8576bdd2
add additional Azure Regions
10 years ago
Tyler Kellen
4c954ec417
add support for --ignore-scripts when using npm
10 years ago
Chris Church
69e7999586
Merge pull request #8812 from trondhindenes/win_json_facts_setup_improvements
...
win_json_facts_setup_improvements; All changes referenced in PRs #8767 , #8768 , #8769
10 years ago
Dionysis Grigoropoulos
f948b4f293
Handle exceptions during config file parsing
...
Handle uncaught exceptions during config file parsing
10 years ago
James Cammarata
4e3095877f
Merge pull request #8791 from jrhe/aws_ec2_us-gov-west-1_region
...
Adds us-gov-west-1 aws ec2 region to cloud library
10 years ago
Dan Buch
290f2759e1
Supporting SSL cert location on SunOS (SmartOS, really)
10 years ago
James Cammarata
606609ac53
Merge pull request #8804 from freshlikeesch/patch-1
...
Formation, Format, and Constiency
10 years ago
Trond Hindenes
72760f5999
All changes referenced in PRs #8767 , #8768 , #8769 :
...
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.
10 years ago
James Cammarata
3bd1e4f8b5
CHANGELOG updates for new A10 modules
10 years ago
James Cammarata
dbc980eaf4
Merge branch 'mischapeters-devel' into devel
10 years ago
Chris Church
2ddab7affc
Merge pull request #8793 from cchurch/powershell3_compat
...
Replace Get-FileHash with MD5 code that works on PowerShell 3.
10 years ago
James Cammarata
70ff6d35aa
A10 module improvements
...
* moved common code to an module_util snippet
* rewrote logic to make each module idempotent
* added new capabilities like the write_config option
10 years ago
freshlikeesch
296d33d2d6
Formation, Format, and Constiency
...
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.
10 years ago
Michael DeHaan
b7082677de
Merge pull request #8790 from sivel/issue/8784
...
Don't use ternary if statements. Fixes #8784
10 years ago
David Stygstra
9ae97a7754
Fix description on quantum_subnet module
10 years ago
Gary Wu
b0c4897196
Update playbooks_variables.rst
10 years ago
Daniel
f8104df457
Corrected VM metadata obtention between Abiquo versions
10 years ago
James Cammarata
7fbdbcdec7
Default fetch_url to use TLSv1 instead of SSLv2/3
10 years ago
James Cammarata
ab495d1916
Set the shell variable on the ssh connection type for accelerated mode
...
Fixes #8799
10 years ago
James Cammarata
99ba9d6e24
Default fetch_url to use TLSv1 instead of SSLv2/3
10 years ago
Chris Church
0d1197a995
Replace Get-FileHash with MD5 code that works on PowerShell 3.
10 years ago
Jonathan Richard Henry Evans (JRHE)
62ef6d9a2b
Adds us-gov-west-1 aws ec2 region to cloud library
10 years ago
Matt Martz
2b307985bc
Don't use ternary if statements. Fixes #8784
10 years ago
John Dewey
44b0ee5322
Can override each role's install path
...
Defaults to the system wide `roles-path` when `path` is not specified in the
provided `role-file`. An example installing nginx to a relative path specified
by the `role-file`.
- src: https://github.com/bennojoy/nginx
path: vagrant/roles/
10 years ago
Patrik Lundin
e65ca6876f
service: use self.changed in service_enable_rcconf().
...
This sets the "changed" result of the module when a rc file is modified.
Previously only --check mode would show that it was going to change.
10 years ago
Michael DeHaan
984d551257
Merge pull request #8761 from mwarkentin/patch-1
...
Fix typo: `active` -> `activate`
10 years ago
Michael DeHaan
3e4b7759e4
Update CHANGELOG.md
10 years ago
James Cammarata
90a42bb15a
Merge branch 'devel' of https://github.com/mischapeters/ansible into mischapeters-devel
10 years ago
James Cammarata
f8a30faeee
Merge branch 'default-omit-updated' into devel
10 years ago
James Cammarata
35dac66afa
Adding docs for default+omit
10 years ago
James Cammarata
a6ad374668
Use split_args directly to check for omitted params
10 years ago
James Cammarata
04da466c7b
Fixing up serialize_args utility function
10 years ago
James Cammarata
e99db078b4
Additional fixes for the new omit parameter variable
10 years ago
Victor Lin
6260635c65
add new test case
10 years ago
Victor Lin
fe88ba7c8d
Undo changes to filter module
10 years ago
Victor Lin
559c04f324
Implement omit for module args, also add tests for it
10 years ago
Victor Lin
bce6642ab6
Implement default omit correctly
10 years ago
Victor Lin
0b4d7f1574
Implement default omit filter
10 years ago
Dustin C. Hatch
a24ee0f31b
portage: Add support for --changed-use
...
The `--changed-use` flag is an improvement over `--newuse` because it
does not trigger rebuilds for USE flag changes that would not affect the
installed package. Its use is generally recommended over `--newuse`.
Signed-off-by: Dustin C. Hatch <dustin@hatch.name>
10 years ago
Emil Palm
a373088d16
Always return a list even if its empty.
10 years ago
James Cammarata
b6a30a7331
Merge branch 'gregswift-devel' into devel
10 years ago
James Cammarata
64a6ab5fff
Removing unused name param for wait_for tcp draining classes
...
Also updates the version_added and other references to the version
in which the connection draining functionality was added.
10 years ago
James Cammarata
4716f47d57
Merge branch 'devel' of https://github.com/gregswift/ansible into gregswift-devel
10 years ago
James Cammarata
ed34cee36f
Atomically move known hosts file into place for paramiko connections
...
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
10 years ago