From e6f4478b87e441d9e9ad6fdc358f942981996c5a Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Jun 01 2023 16:11:43 +0000 Subject: 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 --- diff --git a/contrib/lite-server.py b/contrib/lite-server.py index 51f7c08..6d42f6a 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 d8ca1b2..6453cb8 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 4b304d2..1384e67 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