summaryrefslogtreecommitdiff
path: root/lib/ansible/modules/clustering/openshift/_oc.py
blob: 5fdcf542a8546e10484656f7d1f9e2abd22c6837 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/python
# -*- coding: utf-8 -*-
# (c) 2017, Kenneth D. Evensen <kevensen@redhat.com>

# 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

ANSIBLE_METADATA = {
    'metadata_version': '1.1',
    'status': ['removed'],
    'supported_by': 'community'
}


from ansible.module_utils.common.removed import removed_module


if __name__ == '__main__':
    removed_module(removed_in='2.9')