From 325a13196b32c627854c8d7594e23b58167499f0 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Thu, 25 May 2023 14:51:55 -0400 Subject: [PATCH] Replace usage of #!/usr/bin/env python3 with #!/usr/bin/python3 Only three remaining scripts used this form, two of which are for developers only and not shipped. The shebang in ipa-ccache-sweeper will be converted to "#!$(PYTHON) -I" in the build process. Fixes: https://pagure.io/freeipa/issue/8941 Signed-off-by: Rob Crittenden Reviewed-By: Rafael Guterres Jeffman --- contrib/lite-server.py | 2 +- contrib/lite-setup.py | 2 +- install/tools/ipa-ccache-sweeper.in | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/lite-server.py b/contrib/lite-server.py index 51f7c0888..6d42f6aab 100755 --- a/contrib/lite-server.py +++ b/contrib/lite-server.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/python3 # # Copyright (C) 2017 FreeIPA Contributors see COPYING for license # diff --git a/contrib/lite-setup.py b/contrib/lite-setup.py index d8ca1b229..6453cb88a 100755 --- a/contrib/lite-setup.py +++ b/contrib/lite-setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/python3 # # Copyright (C) 2020 FreeIPA Contributors see COPYING for license # diff --git a/install/tools/ipa-ccache-sweeper.in b/install/tools/ipa-ccache-sweeper.in index 4b304d242..1384e6799 100644 --- a/install/tools/ipa-ccache-sweeper.in +++ b/install/tools/ipa-ccache-sweeper.in @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/python3 # Based heavily on # https://github.com/gssapi/mod_auth_gssapi/blob/master/contrib/sweeper.py