Commit graph

8374 commits

Author SHA1 Message Date
Toshio Kuratomi
1d25c41844 Merge pull request #3525 from madpilot78/freebsd-service-sleep
Make FreeBSD subclass respect the sleep option.
2016-04-23 08:22:21 -07:00
Toshio Kuratomi
b6bca63205 Merge pull request #3524 from mscherer/add_path_user
Change home and ssh_key_file to 'path' in user module
2016-04-23 08:18:26 -07:00
Guido Falsi
8aac5ae7ba Make FreeBSD subclass respect the sleep option. 2016-04-23 14:10:11 +02:00
GGabriele
b6b75720ec Fixed doc 2016-04-23 13:36:03 +02:00
Michael Scherer
e3cb90bc2f Change home and ssh_key_file to 'path' in user module 2016-04-23 10:49:55 +02:00
Darek Kaczyński
f7c32e2b5e Fix for 'cannot unmarshal array into Go value of type string' error about HostConfig Binds (#3496) 2016-04-22 21:05:16 -04:00
GGabriele
3c91dc1f79 Removed old file 2016-04-22 22:44:38 +02:00
GGabriele
7408c8ab14 Changed module name to nxos_facts 2016-04-22 22:42:17 +02:00
Peter Sprygada
fadd307b35 adds new module junos_netconf used for configuring netconf services
This module allows playbook operators to configure the netconf service in
junos for use with other juniper modules.
2016-04-22 15:39:38 -04:00
Peter Sprygada
9a66410899 adds new junos_facts module
The junos_facts module will collect basic system inforamtion about remote
devices running the Junos operating system
2016-04-22 15:38:18 -04:00
Peter Sprygada
8c63a02cc8 add support to junos_command module for netconf transport
This adds support for using netconf to the junos_command option and removes
the use of cli as a transport
2016-04-22 15:35:35 -04:00
Sumit Roy
7fb0605824 Support tagging ELBs using boto 2.0. (#2844) 2016-04-22 15:34:58 -04:00
chouseknecht
3f8d04e74b
Fix poller error handling 2016-04-21 17:55:24 -04:00
chouseknecht
14124ef1b8 Updating based on PR comments 2016-04-21 17:55:06 -04:00
chouseknecht
1ab5987ebc Adding new azure module. 2016-04-21 17:55:06 -04:00
jctanner
804a8e6378 Fix status check on get_url with file schemas and update the examples. (#3512)
Addresses #3511
2016-04-21 16:28:29 -04:00
Brian Coca
3c009bd04f corrected return docs sample 2016-04-21 16:07:44 -04:00
vaupelt
67de0675c3 exclude_hosts does not work as expected with state=drained
There are established connections for a service. The service is bound to a ipv4-mapped ipv6 address. Wait_for wrongly waits for clients listed in exclude_hosts.
2016-04-21 13:11:55 -04:00
Toshio Kuratomi
3cbca32e73 Merge pull request #3507 from resmo/fix/git-porcelain-status
git: fix status to use porcelain, ignore user configuration
2016-04-21 08:51:37 -07:00
Michael Scherer
0300b2add1 Remove old test on SELinux (#3510)
since all is done in modules_utils/basic.py, no need to make
the same test here, especially since that's unused later
2016-04-21 10:44:11 -04:00
Robin Roth
2256ae0793 fix git switch branches in combination with depth on old git versions (#3492)
* fix git switch branches in combination with depth

* the old implementation is correct, but relies on git working correctly
  (as only newer versions do)
* with some older git version (e.g. 1.8.3), git fetch remote branch does
  not work, if the branch does not yet exist locally
* this patch works around that without explicitly checking the git version
* future refactoring is needed to reduce the number of fetches to a
  minimum; but this patch makes the code "correct"

* add git version requirements to doc

* replace set-branches with git 1.7.1 compatible version
2016-04-21 07:40:54 -07:00
GGabriele
0f57bb1513 Fixing bugs 2016-04-21 16:01:04 +02:00
ThomasSteinbach
8dc0276533 docker: fix type issue (#3491)
* fix type issue

* fix type issue for 'volumes-from'
2016-04-21 13:28:26 +02:00
GGabriele
c25610777f Adding nxos_ip_interface 2016-04-21 10:48:45 +02:00
Rene Moser
1f92e77650 git: fix status to use porcelain, ignore user configuration
From the git status doc:

    --porcelain

        Give the output in an easy-to-parse format for scripts. This is similar to the short output, but will remain stable across Git versions and regardless of user configuration. See below for details.

User configuration can break the git module from working as expected.
2016-04-21 10:41:03 +02:00
Matt Davis
c6f5475afe Merge pull request #3501 from dreamcat4/fix/win-modules-strict-mode-fixes
Fix/win modules strict mode fixes
2016-04-20 16:06:01 -07:00
Dreamcat4
b3584c5ffe fix: win_get_url - fixes for strict-mode 2016-04-20 20:26:44 +01:00
Dreamcat4
bb229c8fa2 fix: win_stat - fixes for strict-mode 2016-04-20 20:26:27 +01:00
Adrian Likins
d83c269b82 improve redhat_subscription documentation (#3348)
* add subscription-manager's --type, --consumerid, --name option support

* redhat_subscription: More docs on consumerid
2016-04-20 17:33:08 +02:00
Michael Scherer
a144663953 Fix error reporting for fetch_key (#2662)
Since fetch_url already take care of the exception, the try/except
clause is no longer working, so replace it with proper status
checking, thus permitting to remove urlib2 from the import list.
2016-04-19 18:03:14 -04:00
Constantin
b3bcd5a433 Added improvements and documented return structure (#2320) 2016-04-19 18:01:27 -04:00
jjshoe
bfa0a94c27 Fix an issue where by a call to ec2.get_image wasn't wrapped in a try/except, and would occasionally throw an exception in the wild. Also greatly simplifies two of the ugliest known loops to man down into a single loop. (#2554) 2016-04-19 18:00:16 -04:00
Brian Coca
c64b7a71fb removed usless default doc 2016-04-19 17:48:11 -04:00
Justin Kennedy
7a2b00b625 Updating examples to include required fields (#3242)
Updated examples to include required fields (host, username).  Also updated src option to be listed as required.
2016-04-19 17:46:34 -04:00
Brian Coca
53c4827da5 added missing version_added 2016-04-19 17:45:36 -04:00
Pål Nilsen
eb6192c050 Add optional force parameter for apache2_module (#3251)
* Add optional force parameter for apache2_module

Fixes #2499

* Add documentation for the force parameter

* Clarify in description that -f(orce) is a Debian parameter
2016-04-19 17:44:08 -04:00
Jan Hutař
9ab4780b25 Add support for Satellite/Spacewalk which have slightly different API to Hosted (#3289) 2016-04-19 17:43:28 -04:00
GGabriele
1977be60b2 Adding nxos_vrrp 2016-04-19 21:00:36 +02:00
GGabriele
e7fbafce14 Adding nxos_ping 2016-04-19 20:55:25 +02:00
Michael Scherer
b5ef21ef89 Suggest using uri if curl is detected
Some people use the command module to run curl not to
download file, but to interact with remote HTTP api, and the
get_url suggestion is not suitable. So adding uri in the warning
would give a more meaningful warning.

Suggested by Tahvok on #ansible irc channel.
2016-04-19 20:00:02 +02:00
Dennis Conrad
c1787da7ff Fix UnboundLocalError if 'access_key_ids' not supplied
'key_ids' is referenced before it is assigned, causing the module to fail with a UnboundLocalError instead of failing gracefully with a helpful error message.  This very small patch moves the assignment of 'key_ids' to before the variable is referenced.
2016-04-19 19:53:21 +02:00
jedelman8
ef904f67a6 fix index for portchannel 2016-04-19 10:01:18 -07:00
Toshio Kuratomi
98322a777f Merge pull request #3466 from robinro/git-full-clone-with-hash
git: fall back to full clone if version is hash
2016-04-19 07:42:06 -07:00
Toshio Kuratomi
f39e2343c4 Fix apt module needing another format character 2016-04-19 07:33:55 -07:00
Toshio Kuratomi
609d4cf84b Merge pull request #3464 from robinro/fix-pull-git-branch-#3456
git: with depth only fetch actual version, don't use refs/heads/*
2016-04-19 07:00:09 -07:00
GGabriele
bbe85bf1fa fix conditional for py24 2016-04-19 14:59:01 +02:00
GGabriele
2466e407f4 fix conditional for py24 2016-04-19 14:57:06 +02:00
GGabriele
14e334285f fix conditional for py24 2016-04-19 14:53:49 +02:00
GGabriele
67d416576f fix conditional for py24 2016-04-19 14:48:53 +02:00
jedelman8
1e5dd9674e fix docstring 2016-04-19 05:48:50 -07:00