From e477d993dd00d663472225b5c75053a62c2ca745 Mon Sep 17 00:00:00 2001 From: Andrew Todd Date: Wed, 17 Jul 2013 16:37:04 -0400 Subject: [PATCH] Changed shebangs that use /usr/bin/env to use /usr/bin/python and therefore be compatible with the ansible_python_interpreter variable. --- library/cloud/rax | 2 +- library/monitoring/airbrake_deployment | 2 +- library/monitoring/newrelic_deployment | 2 +- library/net_infrastructure/bigip_pool | 2 +- library/notification/campfire | 2 +- library/notification/flowdock | 2 +- library/notification/hipchat | 2 +- library/notification/irc | 2 +- library/notification/jabber | 2 +- library/notification/mqtt | 2 +- library/notification/osx_say | 2 +- library/web_infrastructure/htpasswd | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/library/cloud/rax b/library/cloud/rax index f54514b7a4..1fbe98e00e 100644 --- a/library/cloud/rax +++ b/library/cloud/rax @@ -1,4 +1,4 @@ -#!/usr/bin/env python -tt +#!/usr/bin/python -tt # This file is part of Ansible # # Ansible is free software: you can redistribute it and/or modify diff --git a/library/monitoring/airbrake_deployment b/library/monitoring/airbrake_deployment index 8db1752a83..6b8ed3c0e0 100644 --- a/library/monitoring/airbrake_deployment +++ b/library/monitoring/airbrake_deployment @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # -*- coding: utf-8 -*- # Copyright 2013 Bruce Pennypacker diff --git a/library/monitoring/newrelic_deployment b/library/monitoring/newrelic_deployment index b530b1f84f..a7de3c6bca 100644 --- a/library/monitoring/newrelic_deployment +++ b/library/monitoring/newrelic_deployment @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # -*- coding: utf-8 -*- # Copyright 2013 Matt Coddington diff --git a/library/net_infrastructure/bigip_pool b/library/net_infrastructure/bigip_pool index ad805337bd..06e67f55f8 100644 --- a/library/net_infrastructure/bigip_pool +++ b/library/net_infrastructure/bigip_pool @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # -*- coding: utf-8 -*- # (c) 2013, Matt Hite diff --git a/library/notification/campfire b/library/notification/campfire index a081a54ec5..9fdb06e6b3 100644 --- a/library/notification/campfire +++ b/library/notification/campfire @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # -*- coding: utf-8 -*- DOCUMENTATION = ''' diff --git a/library/notification/flowdock b/library/notification/flowdock index f528e46139..fa61368d92 100644 --- a/library/notification/flowdock +++ b/library/notification/flowdock @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # -*- coding: utf-8 -*- # Copyright 2013 Matt Coddington diff --git a/library/notification/hipchat b/library/notification/hipchat index 79be892df7..6d2904c167 100644 --- a/library/notification/hipchat +++ b/library/notification/hipchat @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # -*- coding: utf-8 -*- DOCUMENTATION = ''' diff --git a/library/notification/irc b/library/notification/irc index 5ab2c5a8e4..6d209bf2d2 100644 --- a/library/notification/irc +++ b/library/notification/irc @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # -*- coding: utf-8 -*- # (c) 2013, Jan-Piet Mens diff --git a/library/notification/jabber b/library/notification/jabber index f0f6d2b519..8a4fbeba44 100644 --- a/library/notification/jabber +++ b/library/notification/jabber @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # -*- coding: utf-8 -*- DOCUMENTATION = ''' diff --git a/library/notification/mqtt b/library/notification/mqtt index 6c460c7bf2..5e25e66843 100644 --- a/library/notification/mqtt +++ b/library/notification/mqtt @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # -*- coding: utf-8 -*- # (c) 2013, Jan-Piet Mens diff --git a/library/notification/osx_say b/library/notification/osx_say index 6976de14db..2bda3f719e 100644 --- a/library/notification/osx_say +++ b/library/notification/osx_say @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # -*- coding: utf-8 -*- # (c) 2013, Michael DeHaan diff --git a/library/web_infrastructure/htpasswd b/library/web_infrastructure/htpasswd index e594280700..1fe2b6e22c 100644 --- a/library/web_infrastructure/htpasswd +++ b/library/web_infrastructure/htpasswd @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # -*- coding: utf-8 -*- # (c) 2013, Nimbis Services, Inc.