2016-10-13 14:47:50 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# (c) 2013, James Cammarata <jcammarata@ansible.com>
|
Remove wildcard imports
Made the following changes:
* Removed wildcard imports
* Replaced long form of GPL header with short form
* Removed get_exception usage
* Added from __future__ boilerplate
* Adjust division operator to // where necessary
For the following files:
* web_infrastructure modules
* system modules
* linode, lxc, lxd, atomic, cloudscale, dimensiondata, ovh, packet,
profitbricks, pubnub, smartos, softlayer, univention modules
* compat dirs (disabled as its used intentionally)
2017-07-28 05:55:24 +00:00
|
|
|
# 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
|
|
|
|
|
2016-10-13 14:47:50 +00:00
|
|
|
|
2017-08-16 03:16:38 +00:00
|
|
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
2018-08-23 01:20:26 +00:00
|
|
|
'status': ['removed'],
|
2017-03-14 16:07:22 +00:00
|
|
|
'supported_by': 'community'}
|
|
|
|
|
2016-12-06 10:35:05 +00:00
|
|
|
|
2018-01-30 12:23:52 +00:00
|
|
|
from ansible.module_utils.common.removed import removed_module
|
|
|
|
|
2018-08-23 01:20:26 +00:00
|
|
|
|
2018-01-30 12:23:52 +00:00
|
|
|
if __name__ == '__main__':
|
2018-08-23 01:20:26 +00:00
|
|
|
removed_module(removed_in="2.4")
|