diff options
author | Michael DeHaan <michael.dehaan@gmail.com> | 2014-01-15 09:52:17 -0500 |
---|---|---|
committer | Michael DeHaan <michael.dehaan@gmail.com> | 2014-01-15 09:52:17 -0500 |
commit | cb6f7748d55e67912284b840fd1fd788a41cd1de (patch) | |
tree | d4a4967838853e97326d096508de170b65b5503d | |
parent | 587103e56446a4031a8aac73dba25520f0137f1f (diff) | |
download | ansible-modules-extras-cb6f7748d55e67912284b840fd1fd788a41cd1de.tar.gz |
All modules should be using /usr/bin/python in the shebang as ansible_python_interpreter processes this (see FAQ).
Fixing for standardization purposes.
-rw-r--r-- | cloud/docker | 3 | ||||
-rw-r--r-- | net_infrastructure/openvswitch_bridge | 2 | ||||
-rw-r--r-- | net_infrastructure/openvswitch_port | 2 | ||||
-rw-r--r-- | packaging/rpm_key | 2 | ||||
-rwxr-xr-x | system/modprobe | 2 |
5 files changed, 5 insertions, 6 deletions
diff --git a/cloud/docker b/cloud/docker index 9abf63e1..d4fb1f37 100644 --- a/cloud/docker +++ b/cloud/docker @@ -1,5 +1,4 @@ -#!/usr/bin/env python -# +#!/usr/bin/python # (c) 2013, Cove Schneider # diff --git a/net_infrastructure/openvswitch_bridge b/net_infrastructure/openvswitch_bridge index 9e8d521d..4b05f407 100644 --- a/net_infrastructure/openvswitch_bridge +++ b/net_infrastructure/openvswitch_bridge @@ -1,4 +1,4 @@ -#!/usr/bin/env python2 +#!/usr/bin/python #coding: utf-8 -*- # This module is free software: you can redistribute it and/or modify diff --git a/net_infrastructure/openvswitch_port b/net_infrastructure/openvswitch_port index a33946e9..00684496 100644 --- a/net_infrastructure/openvswitch_port +++ b/net_infrastructure/openvswitch_port @@ -1,4 +1,4 @@ -#!/usr/bin/env python2 +#!/usr/bin/python #coding: utf-8 -*- # This module is free software: you can redistribute it and/or modify diff --git a/packaging/rpm_key b/packaging/rpm_key index a1c4b036..82532477 100644 --- a/packaging/rpm_key +++ b/packaging/rpm_key @@ -1,4 +1,4 @@ -#!/usr/bin/python2 +#!/usr/bin/python # -*- coding: utf-8 -*- """ diff --git a/system/modprobe b/system/modprobe index 80ec66d9..82ca86b9 100755 --- a/system/modprobe +++ b/system/modprobe @@ -1,4 +1,4 @@ -#!/usr/bin/env python2 +#!/usr/bin/python #coding: utf-8 -*- # This module is free software: you can redistribute it and/or modify |