From 8036e6ee23cfed4437c98c0a4766b2d39e24988c Mon Sep 17 00:00:00 2001 From: James Tanner Date: Wed, 30 Oct 2013 10:50:16 -0400 Subject: [PATCH] Revert templating enhancements from 73dbab70 e6c28658 d409352c 9858b1f2 4587528b 9b1fe455 214b0b05 8d3db803 7f9504d1 5031104c 35cb9dc2 2bd8cb57 1e85c754 --- system/ping | 6 ++---- system/service | 8 ++------ 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/system/ping b/system/ping index e0ff5f2bbad..69507111aec 100644 --- a/system/ping +++ b/system/ping @@ -48,9 +48,7 @@ def main(): result['ping'] = module.params['data'] module.exit_json(**result) -### boilerplate: import common module snippets here -from ansible.module_utils.basic import * - -### invoke the module +# this is magic, see lib/ansible/module_common.py +#<> main() diff --git a/system/service b/system/service index 63f681f6ace..fb9364c24f5 100644 --- a/system/service +++ b/system/service @@ -1205,11 +1205,7 @@ def main(): module.exit_json(**result) -### boilerplate: import common module snippets here -from ansible.module_utils.basic import * +# this is magic, see lib/ansible/module_common.py +#<> -### invoke the module main() - - -