Commit graph

9239 commits

Author SHA1 Message Date
scottb
b0ef99c73b Merge pull request #4659 from dharmabumstead/update-command-module-operatoers
Added semicolon to invalid operators list redux.
2016-09-02 14:58:12 -07:00
GGabriele
7e78c5aad7 Fixing module description 2016-09-02 23:47:19 +02:00
GGabriele
9cf9e61da4 Addin nxos_overlay_global 2016-09-02 23:42:57 +02:00
Scott Butler
1b86d838b6 Added semicolon to invalid operators list redux. 2016-09-02 12:26:33 -07:00
Kenny Woodson
269c06a4c9 Fix for validate rule. Ensure rule is a dict. (#4640) 2016-09-02 15:09:58 -04:00
Evan Kaufman
f7b34c810a Declare empty diff dict ahead of time (#4646)
Fixes #4634
2016-09-02 20:55:03 +02:00
Kenny Woodson
9b37dcb593 Getting rid of a None type error when no resource tags are defined. (#4638) 2016-09-02 11:54:27 -07:00
Toshio Kuratomi
42c74a0ce2 Python3 fixes to copy, file, and stat so that the connection integration tests can be run (#4632)
* Python3 fixes to copy, file, and stat so that the connection integration tests can be run

* Forgot to audit the helper functions as well.

* Fix dest to refledt b_dest (found by @mattclay)
2016-09-02 11:25:31 -07:00
GGabriele
28e3e30d41 Adding nxos_interface_ospf 2016-09-02 19:20:31 +02:00
GGabriele
cb9f28c0d6 Fix error handling 2016-09-02 19:07:38 +02:00
GGabriele
ffb613febe Adding nxos_hsrp 2016-09-02 19:02:23 +02:00
GGabriele
d92d1feeaa Fix typo 2016-09-02 18:58:06 +02:00
GGabriele
53121eb647 Fix try/except 2016-09-02 18:55:17 +02:00
GGabriele
0f606122bc Fix error handling 2016-09-02 18:51:11 +02:00
GGabriele
3b266bf1e2 Adding nxos_file_copy 2016-09-02 18:44:17 +02:00
GGabriele
90cd9485ec Adding nxos_evpn_vni 2016-09-02 18:32:46 +02:00
GGabriele
1f3d7681e2 Fixed DOCSTRING 2016-09-02 18:15:30 +02:00
GGabriele
bb9d8c6385 Adding nxos_bgp_neighbor_af module 2016-09-02 18:10:42 +02:00
GGabriele
fc527220a8 Adding nxos_bgp_neighbor module 2016-09-02 17:52:19 +02:00
GGabriele
0b7038d65b Fixing DOCSTRING yaml format 2016-09-02 17:43:57 +02:00
GGabriele
710962824e Fixing DOCSTRING yaml format 2016-09-02 17:39:43 +02:00
GGabriele
687c2198d0 Fixing DOCSTRING 2016-09-02 17:35:46 +02:00
GGabriele
5ba6a45d65 Adding nxos_bgp_af module 2016-09-02 17:29:14 +02:00
GGabriele
00f6276eaf Adding python object for 2.1 support 2016-09-02 16:59:34 +02:00
GGabriele
4b20a89739 Adding python object for 2.1 support 2016-09-02 16:51:32 +02:00
GGabriele
1c48fe9bc3 Adding python object for 2.1 support 2016-09-02 16:42:25 +02:00
GGabriele
fe11b09b8d Adding python object for 2.1 support 2016-09-02 16:17:03 +02:00
GGabriele
8518cb4e97 Adding python objects for 2.1 support 2016-09-02 16:05:23 +02:00
Peter Sprygada
baa2e930bb Merge pull request #4649 from privateip/ios_facts
bugfix that adds missing itertools import to ios_facts
2016-09-02 09:07:49 -04:00
GGabriele
2579ca43bf Fixing docstring 2016-09-02 14:34:07 +02:00
GGabriele
71067b1d4e Removing delete for bollean, fixing argparse, embedding python object 2016-09-02 14:23:54 +02:00
Peter Sprygada
4c8bbae415 bugfix that adds missing itertools import to ios_facts
fixes #4647
2016-09-02 08:15:07 -04:00
Peter Sprygada
8f3ee22a17 Merge pull request #4599 from skg-net/devel
Added Command and Config modules to support Dell Networking OS10 device
2016-09-01 10:26:49 -04:00
Michael Scherer
5f652c7584 Add support for selinux_boolean_sub conversion (#4570)
SELinux since 2012 use a configuration file to
convert boolean names from a old name to a new name,
for preserving backward compatibility.

However, this has to be done explicitely when using the python
bindings, and the module was not doing it.

Openshift ansible script use this construct to detect if
a boolean exist or not:

    - name: Check for existence of virt_sandbox_use_nfs seboolean
      command: getsebool virt_sandbox_use_nfs
      register: virt_sandbox_use_nfs_output
      failed_when: false
      changed_when: false

    - name: Set seboolean to allow nfs storage plugin access from containers(sandbox)
      seboolean:
        name: virt_sandbox_use_nfs
        state: yes
        persistent: yes
      when: virt_sandbox_use_nfs_output.rc == 0

On a system where virt_sandbox_use_nfs do not exist, this work. But
on a system where virt_sandbox_use_nfs is a alias to virt_use_nfs (like
Fedora 24), this fail because the seboolean is not aware of the alias.
2016-09-01 04:26:23 -07:00
Toshio Kuratomi
7e79c59d38 to_text, to_bytes, and to_native now have surrogate_or_strict error handler (#4630)
On python3, we want to use the surrogateescape error handler if
available for filesystem paths and the like.  On python2, have to use
strict in these circumstances.  Use the new error strategy for to_text,
to_bytes, and to_native that allows this.
2016-09-01 04:19:15 -07:00
John R Barker
ceddebaf28 Consistent naming of Arista EOS device (#4616) 2016-09-01 12:10:32 +01:00
Peter Sprygada
1d48b47cad Merge pull request #4627 from privateip/ops_template
update ops_template module using refactored network shared modules
2016-08-31 22:06:43 -04:00
Peter Sprygada
dd6751d60a Merge pull request #4612 from privateip/ops_command
added new functionality to ops_command
2016-08-31 22:06:31 -04:00
Peter Sprygada
3746ed6a63 Merge pull request #4611 from privateip/ops_facts
update ops_facts with enhancements
2016-08-31 22:05:56 -04:00
Peter Sprygada
244c626822 Merge pull request #4610 from privateip/ops_config
update ops_config module with new enhancements
2016-08-31 22:05:47 -04:00
Matt Clay
95353ded58 Add python3 testing for module PRs. (#4629) 2016-08-31 16:59:54 -07:00
Senthil Kumar Ganesan
51c13ad82d Cleaned up the module imports 2016-08-31 14:39:16 -07:00
Tobias Wolf
34201d6bc4 Fix database table quoting in privileges_unpack() (#3858)
In Ansible 2.x this module gives `changed = True` for all privileges
that are specified including a table with

    priv: "database.table:GRANT"

Mysql returns escaped names in the format

    `database`.`tables`:GRANT

However in PR #1358, which was intended to support dotted database names
(a crazy idea to begin with), the quotes for the table name were left
out, leading to `curr_priv != new_priv`.

This means that the idempotency comparison between new_priv and
curr_priv is always 'changed'.

This PR re-introduces quoting to the table part of the priv.
2016-08-31 14:23:54 -07:00
Jean Prat
86366eca68 if user is empty, it is not converted to tuple when using host_all (#3038) 2016-08-31 21:56:08 +02:00
James Cammarata
e7cf786851 Adding 'end_play' docs to meta module 2016-08-31 14:12:29 -05:00
Peter Sprygada
9c64d1947c update ops_template module using refactored network shared modules
This updates the ops_template module to work with the network shared
modules introduced in Ansible 2.2

Tested with OpenSwitch 0.4.0
2016-08-31 15:01:16 -04:00
Peter Sprygada
b99cad4128 added new functionality to ops_command
* commands argument now accepts a dict arguments
* waitfor has been renamed to wait_for with an alias to waitfor
* only show commands are allowed when check mode is specified
* config mode is no longer allowed in the command stack
* add argument match with valid values any, all

Tested on OpenSwitch 0.4.0
2016-08-31 14:19:31 -04:00
Peter Sprygada
6f9ab60f81 Merge pull request #4615 from ansible/gundalow-patch-2
Consistent naming of Arista EOS device
2016-08-31 14:16:28 -04:00
GGabriele
7f02615fd9 Fixing DOC string 2016-08-31 18:46:46 +02:00
GGabriele
1358e0fd91 Fixing RETURN string 2016-08-31 18:44:04 +02:00