mirror of https://github.com/ansible/ansible.git
Attributes compat (#75563)
* ignore attributes in output * ignore 'attributes' for json dump * actually add file * clog * sometimtes its not a dict * always ignore * also allow validation to work on newer modules * remove attributes doc let existing overrides display, wont be full info but still pertinent info though user will have to check newer versionspull/75623/head
parent
8c105c0f61
commit
463cf9fe24
@ -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