diff --git a/system/make.py b/system/make.py index d375082336e..9ac47124279 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 . -# 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()