aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/library/kubectl_apply_manifest.py
diff options
context:
space:
mode:
Diffstat (limited to 'ansible/library/kubectl_apply_manifest.py')
-rw-r--r--[-rwxr-xr-x]ansible/library/kubectl_apply_manifest.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/ansible/library/kubectl_apply_manifest.py b/ansible/library/kubectl_apply_manifest.py
index 75c68cb..dce93c6 100755..100644
--- a/ansible/library/kubectl_apply_manifest.py
+++ b/ansible/library/kubectl_apply_manifest.py
@@ -1,5 +1,6 @@
-# -*- encoding: utf-8 -*-
-# ============LICENSE_START=======================================================
+#!/usr/bin/python
+# -*- encoding: utf-8 -*-
+# ============LICENSE_START===============================================
# org.onap.vvp/engagementmgr
# ===================================================================
# Copyright © 2017 AT&T Intellectual Property. All rights reserved.
@@ -36,7 +37,7 @@
# ============LICENSE_END============================================
#
# ECOMP is a trademark and service mark of AT&T Intellectual Property.
-#!/usr/bin/python
+
import os
from ansible.module_utils.basic import AnsibleModule
@@ -69,5 +70,6 @@ def main():
msg = "Could not apply manifest"
module.fail_json(msg=msg + " " + stderr)
+
if __name__ == "__main__":
main()