mirror of https://github.com/ansible/ansible.git
* ignore 'attributes' for json dump
let existing overrides display, wont be full info but still pertinent info
though user will have to check newer versions
(cherry picked from commit 463cf9fe24)
pull/75707/head
parent
5bc16fcc15
commit
12c4661bbb
@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- make previous versions compatible we new attributres w/o implementing them.
|
||||
@ -0,0 +1,18 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright: Ansible Project
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
|
||||
# NOTE: this file is here to allow modules using the new attributes feature to
|
||||
# work w/o errors in this version of ansible, it does NOT provide the full
|
||||
# attributes feature, just a shim to avoid the fragment not being found.
|
||||
|
||||
class ModuleDocFragment(object):
|
||||
|
||||
# Standard documentation fragment
|
||||
DOCUMENTATION = r'''
|
||||
options: {}
|
||||
'''
|
||||
Loading…
Reference in New Issue