diff options
author | Pavel Filipenský <pfilipensky@samba.org> | 2023-01-20 20:53:44 +0100 |
---|---|---|
committer | Pavel Shilovsky <piastryyy@gmail.com> | 2024-02-26 19:16:06 -0800 |
commit | 1eee8e89710bb54ddc15f345cd786d6513045051 (patch) | |
tree | 6662c758868850e5411cd04c70e8cb8002a30967 | |
parent | 316522036133d44ed02cd39ed2748e2b59c85b30 (diff) | |
download | cifs-utils-1eee8e89710bb54ddc15f345cd786d6513045051.tar.gz cifs-utils-1eee8e89710bb54ddc15f345cd786d6513045051.tar.bz2 cifs-utils-1eee8e89710bb54ddc15f345cd786d6513045051.zip |
Use explicit "#!/usr/bin/python3"
Fix Red Hat internal report for "ambiguous python shebang".
Signed-off-by: Pavel Filipenský <pfilipensky@samba.org>
-rwxr-xr-x | checkopts | 2 | ||||
-rwxr-xr-x | smb2-quota | 2 | ||||
-rwxr-xr-x | smb2-secdesc | 2 | ||||
-rwxr-xr-x | smbinfo | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/python3 # # Script to check for inconsistencies between documented mount options # and implemented kernel options. @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python3 # coding: utf-8 # # smb2-quota is a cmdline tool to display quota information for the diff --git a/smb2-secdesc b/smb2-secdesc index 5886091..534dd92 100755 --- a/smb2-secdesc +++ b/smb2-secdesc @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/python3 # coding: utf-8 import array @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/python3 # -*- coding: utf-8 -*- # # smbinfo is a cmdline tool to query SMB-specific file and fs |