Commit Graph

4851 Commits (69e7999586cf395e7ff73a8dceadb5b0d035fb0f)

Author SHA1 Message Date
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
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
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 dbc980eaf4 Merge branch 'mischapeters-devel' into devel 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
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
James Cammarata 90a42bb15a Merge branch 'devel' of https://github.com/mischapeters/ansible into mischapeters-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 36bd9efb70 Stop/remove existing docker container if the specified tag is different
Fixes #8278
10 years ago
James Cammarata fa3676b848 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 10 years ago
James Cammarata 38eb5453b4 Add boto support checks for new ec2_elb_lb attribute fields
Also minor fixes like adjusting version_added fields, etc.
10 years ago
James Cammarata adb00b9439 Merge branch 'elb-enhancements' of https://github.com/dataxu/ansible into dataxu-elb-enhancements 10 years ago
James Cammarata d1d3394046 Docs updates to add examples for symbolic modes
Also fixes missing doc fragments missing in template and assemble
10 years ago
Peter Fry 35745aff22 Add support for volume encryption to ec2_vol
Fixes #7775
10 years ago
James Cammarata d6a8d4671a Add additional checks to detect upstart services
Also adds checks for the upstart version, in order to test check
support for manual vs. start on manual
10 years ago
Eri Bastos 82ec224a93 Proposed fix for issue #7757 10 years ago
James Cammarata 795eaccecb Merge pull request #8725 from quiver/fix-get_url-content-disposition
[get_url module]parse content-disposition filename parameter even if it's not quoted
10 years ago
James Cammarata 0dda8a7996 Tweaking change to documentation language for cron name param 10 years ago
James Cammarata a415993142 Merge branch 'devel' of https://github.com/mattparker/ansible into mattparker-devel 10 years ago
James Cammarata 2d683cbd30 Merge pull request #8740 from mattparker/patch-1
Name appears to be a required parameter for cron module
10 years ago
James Cammarata 69484fac7b Merge pull request #8736 from ericdwhite/issue-8735-Trim-docker-module-expose-items
module docker - expose will fail to port forward network connections if there are spaces in the CSV value
10 years ago
James Cammarata 0aec8244c8 Merge pull request #8738 from bcoca/acl_tilde_expansion
now acl expands tildes
10 years ago
James Cammarata 77ef324ab7 Merge pull request #8729 from ercpe/openrc-hostname
Hostname strategy implementation for OpenRC based systems (e.g. Gentoo)
10 years ago
Matt Parker fd982cf8b7 Update cron documenation
The "name" parameter seems to be rather important as the identifying feature of a cron job.  This is an update to the documentation to further emphasize this.
10 years ago
Matt Parker dc634bc644 Name appears to be a required parameter
As far as I can tell, `name` is a required parameter.  The guard test at (now) line 458 says you need name if `state == present` and at 464 if `state != present`, although that's not quite as clear.  Each of the code paths at 485 - 495 pass the name param through to `add_job`, `update_job` and `remove_job`, and the actual _update_job method earlier seems to require it too.  However I don't really know python so I may be wrong, but I can't see the circumstances when `name` is not required.
10 years ago
Brian Coca f6e10b580e now acl expands tildes 10 years ago
Eric D. White f44125ccb7 Issue 8735 - module docker - expose values should be striped to ensure port forwarding works. 10 years ago
Johann Schmitz 9945a732f7 Hostname strategy implementation for OpenRC based systems (e.g. Gentoo) 10 years ago
George Yoshida b2385870af For content-disposition response header field, try to parse filename parameter even if it's not quoted. 10 years ago
Michael DeHaan a419ffdf41 Make command warnings off by default to minimize surprises. 10 years ago
Michael DeHaan 7ffa9cecae Docs for command warnings feature. 10 years ago
Michael DeHaan fcb610dec4 Slightly trim down the warnings list based on some things being pretty common
for local usage.
10 years ago
Will Thames ab8490d003 Added warnings to command module
Generate warnings when users are shelling out to commands
rather than using modules

Can be turned off on a per-action line with the documented
warn=False flag. Can be turned off globally using
command_warnings = False in ansible config file.

Print out warnings using the standard playbook callbacks.

Created some additional tests in TestRunner.test_command
and also a demonstration playbook.
10 years ago
James Cammarata 6b3f7a82fb Fixing bug with image/tag pulling in docker module
Fixes #8670
10 years ago
Michael DeHaan 3871eebfbb Merge pull request #8441 from willthames/unarchive_dest_fix
Unarchive should work when parent directory is not writable
10 years ago
Michael DeHaan b0e863b3f8 Merge pull request #8659 from willthames/rds_module_connection_fix
rds_module: Fix AWS connection
10 years ago
James Cammarata 311ec543af If not specified, do not modify subnet/route_tables for ec2 VPCs
Also fixes a bug whereby any changes to the route_tables were not
properly reflected by setting changed=True.

Fixes #8666
10 years ago
Greg Swift 5ecfe884b8 Extend wait_for module to support draining of active tcp connections 10 years ago
James Cammarata b98348c2c1 Merge branch 'relative-path-fix' of https://github.com/major/ansible into major-relative-path-fix 10 years ago
Major Hayden c9cdc9d6f9 File module cannot create relative paths
When trying to create a directory relative to the current working
directory, a directory is created at the root of the filesystem
instead.  This patch ensures that directories specified with relative
paths will be created in the current working directory.  Fully
qualified paths aren't affected

Signed-off-by: Major Hayden <major@mhtx.net>
10 years ago
James Cammarata 8956c636a5 Remove incorrect use of module.fail_json during import check for s3
Fixes #8698
10 years ago
Paul Armstrong 09979ac20d asg-properties Get all the properties from ASG's 10 years ago
Michael DeHaan e6be619257 Merge pull request #8678 from 0x44/debconf-vtypes
debconf module: add the missing 'error' vtype and reorder vtypes as they...
10 years ago
James Cammarata 8648fa175c Removing skipped=True from result when using creates= and removes=
Fixes #8645
10 years ago
Michael DeHaan 47f4dec676 In order to allow easier updates from upstream hardware vendors, we're going to be hosting network hardware
config modules on Galaxy as announced during the last release cycle.   (This excludes load balancers, which remain in core).

Please refer to https://eos.arista.com/introducing-arista-eos-roles-for-ansible/ and https://galaxy.ansible.com/list#/roles/1359
and where this content now lives.

Thanks to Peter Sprygada for the roles content!
10 years ago
Ding Deng 13db184d7f debconf module: add the missing 'error' vtype and reorder vtypes as they appeared in debconf-devel(7). 10 years ago
James Cammarata 379e31883c Fix check mode issues with copy module
Fixes #8639
10 years ago
James Cammarata e2b8f05b79 Add option to disable ControlPath to ssh options during rsync
Fixes #8473
10 years ago