summaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorLinus Unnebäck <linus@folkdatorn.se>2016-03-25 12:19:09 +0100
committerLinus Unnebäck <linus@folkdatorn.se>2016-03-25 12:42:45 +0100
commit7def4b01f5f9407c3b8bd474d9653bc3fc888cc5 (patch)
treeb0449a1e45ea2595c05dc6ef646037e150b7db5a /system
parentb328feccb156d47d1f7334248860d22bb2dee853 (diff)
downloadansible-modules-extras-7def4b01f5f9407c3b8bd474d9653bc3fc888cc5.tar.gz
make: move down ansible import
Diffstat (limited to 'system')
-rw-r--r--system/make.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/system/make.py b/system/make.py
index d3750823..9ac47124 100644
--- a/system/make.py
+++ b/system/make.py
@@ -18,9 +18,6 @@
# You should have received a copy of the GNU General Public License
# along with this software. If not, see <http://www.gnu.org/licenses/>.
-# import module snippets
-from ansible.module_utils.basic import *
-
DOCUMENTATION = '''
---
module: make
@@ -118,5 +115,7 @@ def main():
run_make(make_path, module, args)
module.exit_json(**args)
+from ansible.module_utils.basic import *
+
if __name__ == '__main__':
main()