diff options
author | Rob Crittenden <rcritten@redhat.com> | 2011-01-13 12:26:30 -0500 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2011-01-14 16:27:48 -0500 |
commit | d7bd9138c803659bbcc3320a4656478ee73f2b3d (patch) | |
tree | 6ea62f47b9436292e25e7f7c5ca6f94e4d096d66 | |
parent | 81311a9f4efbcd353bcc201b58940f11c2f72e44 (diff) | |
download | freeipa-d7bd9138c803659bbcc3320a4656478ee73f2b3d.tar.gz freeipa-d7bd9138c803659bbcc3320a4656478ee73f2b3d.tar.xz freeipa-d7bd9138c803659bbcc3320a4656478ee73f2b3d.zip |
Execute /usr/bin/python directly instead of /usr/bin/env python
ticket 608
-rw-r--r-- | contrib/RHEL4/setup.py | 2 | ||||
-rwxr-xr-x | doc/examples/python-api.py | 2 | ||||
-rwxr-xr-x | install/tools/ipa-compat-manage | 2 | ||||
-rwxr-xr-x | install/tools/ipa-host-net-manage | 2 | ||||
-rwxr-xr-x | install/tools/ipa-ldap-updater | 2 | ||||
-rwxr-xr-x | install/tools/ipa-nis-manage | 2 | ||||
-rwxr-xr-x | install/tools/ipactl | 2 | ||||
-rwxr-xr-x | ipa | 2 | ||||
-rw-r--r-- | ipapython/setup.py.in | 2 | ||||
-rwxr-xr-x | lite-server.py | 2 | ||||
-rwxr-xr-x | make-test | 2 | ||||
-rwxr-xr-x | makeapi | 2 |
12 files changed, 12 insertions, 12 deletions
diff --git a/contrib/RHEL4/setup.py b/contrib/RHEL4/setup.py index df0adcf1f..f535875b4 100644 --- a/contrib/RHEL4/setup.py +++ b/contrib/RHEL4/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # Copyright (C) 2007 Red Hat # see file 'COPYING' for use and warranty information # diff --git a/doc/examples/python-api.py b/doc/examples/python-api.py index 004134704..60578e805 100755 --- a/doc/examples/python-api.py +++ b/doc/examples/python-api.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # Authors: # Jason Gerard DeRose <jderose@redhat.com> # diff --git a/install/tools/ipa-compat-manage b/install/tools/ipa-compat-manage index 4efce417c..bc88cd3a7 100755 --- a/install/tools/ipa-compat-manage +++ b/install/tools/ipa-compat-manage @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # Authors: Rob Crittenden <rcritten@redhat.com> # Authors: Simo Sorce <ssorce@redhat.com> # diff --git a/install/tools/ipa-host-net-manage b/install/tools/ipa-host-net-manage index 84d8b47a2..8a8267f1f 100755 --- a/install/tools/ipa-host-net-manage +++ b/install/tools/ipa-host-net-manage @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # Authors: Jr Aquino <jr.aquino@citrix.com> # Authors: Rob Crittenden <rcritten@redhat.com> # Authors: Simo Sorce <ssorce@redhat.com> diff --git a/install/tools/ipa-ldap-updater b/install/tools/ipa-ldap-updater index 239b24e10..161766e3b 100755 --- a/install/tools/ipa-ldap-updater +++ b/install/tools/ipa-ldap-updater @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # Authors: Rob Crittenden <rcritten@redhat.com> # # Copyright (C) 2008 Red Hat diff --git a/install/tools/ipa-nis-manage b/install/tools/ipa-nis-manage index 81bb9cdff..310ee1494 100755 --- a/install/tools/ipa-nis-manage +++ b/install/tools/ipa-nis-manage @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # Authors: Rob Crittenden <rcritten@redhat.com> # Authors: Simo Sorce <ssorce@redhat.com> # diff --git a/install/tools/ipactl b/install/tools/ipactl index 866f55a79..059b86049 100755 --- a/install/tools/ipactl +++ b/install/tools/ipactl @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # Authors: Simo Sorce <ssorce@redhat.com> # # Copyright (C) 2008-2010 Red Hat @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # Authors: # Jason Gerard DeRose <jderose@redhat.com> diff --git a/ipapython/setup.py.in b/ipapython/setup.py.in index 5eca8468c..d9ee28c55 100644 --- a/ipapython/setup.py.in +++ b/ipapython/setup.py.in @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # Copyright (C) 2007 Red Hat # see file 'COPYING' for use and warranty information # diff --git a/lite-server.py b/lite-server.py index 2ba92d68f..8303440ca 100755 --- a/lite-server.py +++ b/lite-server.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # Authors: # Jason Gerard DeRose <jderose@redhat.com> @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python """ Run IPA unit tests under multiple versions of Python (if present). @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python # Authors: # Rob Crittenden <rcritten@redhat.com> # |