From 6f4964228661e4e80bd56c4a0540e23041a1f1e4 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Wed, 15 Jan 2014 09:52:17 -0500 Subject: [PATCH] All modules should be using /usr/bin/python in the shebang as ansible_python_interpreter processes this (see FAQ). Fixing for standardization purposes. --- library/cloud/docker | 3 +-- library/net_infrastructure/openvswitch_bridge | 2 +- library/net_infrastructure/openvswitch_port | 2 +- library/packaging/rpm_key | 2 +- library/system/modprobe | 2 +- 5 files changed, 5 insertions(+), 6 deletions(-) diff --git a/library/cloud/docker b/library/cloud/docker index 9abf63e18ab..d4fb1f372a9 100644 --- a/library/cloud/docker +++ b/library/cloud/docker @@ -1,5 +1,4 @@ -#!/usr/bin/env python -# +#!/usr/bin/python # (c) 2013, Cove Schneider # diff --git a/library/net_infrastructure/openvswitch_bridge b/library/net_infrastructure/openvswitch_bridge index 9e8d521d39e..4b05f4079f5 100644 --- a/library/net_infrastructure/openvswitch_bridge +++ b/library/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/library/net_infrastructure/openvswitch_port b/library/net_infrastructure/openvswitch_port index a33946e9a1b..00684496b45 100644 --- a/library/net_infrastructure/openvswitch_port +++ b/library/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/library/packaging/rpm_key b/library/packaging/rpm_key index a1c4b036a62..82532477348 100644 --- a/library/packaging/rpm_key +++ b/library/packaging/rpm_key @@ -1,4 +1,4 @@ -#!/usr/bin/python2 +#!/usr/bin/python # -*- coding: utf-8 -*- """ diff --git a/library/system/modprobe b/library/system/modprobe index 80ec66d9b18..82ca86b9bd5 100755 --- a/library/system/modprobe +++ b/library/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