2014-09-26 01:01:01 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2018-02-25 02:09:54 +00:00
|
|
|
# Copyright: (c) 2014, Matt Martz <matt@sivel.net>, and others
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
2014-09-26 01:01:01 +00:00
|
|
|
|
|
|
|
# this is a windows documentation stub. actual code lives in the .ps1
|
|
|
|
# file of the same name
|
|
|
|
|
2017-08-16 03:16:38 +00:00
|
|
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
2018-08-31 21:27:32 +00:00
|
|
|
'status': ['removed'],
|
2017-03-14 16:07:22 +00:00
|
|
|
'supported_by': 'community'}
|
|
|
|
|
2014-09-26 01:01:01 +00:00
|
|
|
|
2018-08-31 21:27:32 +00:00
|
|
|
from ansible.module_utils.common.removed import removed_module
|
2014-09-26 01:01:01 +00:00
|
|
|
|
2015-04-08 02:28:47 +00:00
|
|
|
|
2018-08-31 21:27:32 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
removed_module(removed_in='2.8')
|