Blame SOURCES/0001-Use-explicit-usr-bin-python3.patch
|
|
4f4327 |
From 17162396d9ace9396c27826f1c62719186e29ae9 Mon Sep 17 00:00:00 2001
|
|
|
4f4327 |
From: =?UTF-8?q?Pavel=20Filipensk=C3=BD?= <pfilipensky@samba.org>
|
|
|
4f4327 |
Date: Fri, 20 Jan 2023 20:53:44 +0100
|
|
|
4f4327 |
Subject: [PATCH] Use explicit #!/usr/bin/python3
|
|
|
4f4327 |
|
|
|
4f4327 |
---
|
|
|
4f4327 |
checkopts | 2 +-
|
|
|
4f4327 |
smb2-quota | 2 +-
|
|
|
4f4327 |
smb2-secdesc | 2 +-
|
|
|
4f4327 |
smbinfo | 2 +-
|
|
|
4f4327 |
4 files changed, 4 insertions(+), 4 deletions(-)
|
|
|
4f4327 |
|
|
|
4f4327 |
diff --git a/checkopts b/checkopts
|
|
|
4f4327 |
index 88e70b1..00c4cfd 100755
|
|
|
4f4327 |
--- a/checkopts
|
|
|
4f4327 |
+++ b/checkopts
|
|
|
4f4327 |
@@ -1,4 +1,4 @@
|
|
|
4f4327 |
-#!/usr/bin/env python3
|
|
|
4f4327 |
+#!/usr/bin/python3
|
|
|
4f4327 |
#
|
|
|
4f4327 |
# Script to check for inconsistencies between documented mount options
|
|
|
4f4327 |
# and implemented kernel options.
|
|
|
4f4327 |
diff --git a/smb2-quota b/smb2-quota
|
|
|
4f4327 |
index 6d0b8a3..49207c7 100755
|
|
|
4f4327 |
--- a/smb2-quota
|
|
|
4f4327 |
+++ b/smb2-quota
|
|
|
4f4327 |
@@ -1,4 +1,4 @@
|
|
|
4f4327 |
-#!/usr/bin/env python
|
|
|
4f4327 |
+#!/usr/bin/python3
|
|
|
4f4327 |
# coding: utf-8
|
|
|
4f4327 |
#
|
|
|
4f4327 |
# smb2-quota is a cmdline tool to display quota information for the
|
|
|
4f4327 |
diff --git a/smb2-secdesc b/smb2-secdesc
|
|
|
4f4327 |
index 5886091..534dd92 100755
|
|
|
4f4327 |
--- a/smb2-secdesc
|
|
|
4f4327 |
+++ b/smb2-secdesc
|
|
|
4f4327 |
@@ -1,4 +1,4 @@
|
|
|
4f4327 |
-#!/usr/bin/env python
|
|
|
4f4327 |
+#!/usr/bin/python3
|
|
|
4f4327 |
# coding: utf-8
|
|
|
4f4327 |
|
|
|
4f4327 |
import array
|
|
|
4f4327 |
diff --git a/smbinfo b/smbinfo
|
|
|
4f4327 |
index 73c5bb3..766024e 100755
|
|
|
4f4327 |
--- a/smbinfo
|
|
|
4f4327 |
+++ b/smbinfo
|
|
|
4f4327 |
@@ -1,4 +1,4 @@
|
|
|
4f4327 |
-#!/usr/bin/env python3
|
|
|
4f4327 |
+#!/usr/bin/python3
|
|
|
4f4327 |
# -*- coding: utf-8 -*-
|
|
|
4f4327 |
#
|
|
|
4f4327 |
# smbinfo is a cmdline tool to query SMB-specific file and fs
|
|
|
4f4327 |
--
|
|
|
4f4327 |
2.38.1
|
|
|
4f4327 |
|