From 70b9ca91f264eb75177e18d9624beab685f55e58 Mon Sep 17 00:00:00 2001
From: Benjamin Drung <benjamin.drung@cloud.ionos.com>
Date: Mon, 21 Oct 2019 15:37:24 +0200
Subject: Add missing shebang to Python scripts

`mlxconfig/mstprivhost.py` and `small_utils/mstfwreset.py` are Python
scripts that are executable, but they lack a shebang.

https://github.com/Mellanox/mstflint/pull/219
Signed-off-by: Benjamin Drung <benjamin.drung@cloud.ionos.com>
---
 mlxconfig/mstprivhost.py        | 2 ++
 resourcedump/mstresourcedump.py | 2 ++
 small_utils/mstfwreset.py       | 2 ++
 3 files changed, 6 insertions(+)

Index: mstflint/mlxconfig/mstprivhost.py
===================================================================
--- mstflint.orig/mlxconfig/mstprivhost.py	2022-08-14 22:58:23.864895708 +0300
+++ mstflint/mlxconfig/mstprivhost.py	2022-08-14 22:58:23.864895708 +0300
@@ -1,3 +1,5 @@
+#!/usr/bin/python3
+
 # Copyright (c) 2004-2021 Mellanox Technologies LTD. All rights reserved.
 # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
 #
Index: mstflint/small_utils/mstfwreset.py
===================================================================
--- mstflint.orig/small_utils/mstfwreset.py	2022-08-14 22:58:23.864895708 +0300
+++ mstflint/small_utils/mstfwreset.py	2022-08-14 22:58:23.864895708 +0300
@@ -1,3 +1,5 @@
+#!/usr/bin/python3
+
 # Copyright (c) 2004-2010 Mellanox Technologies LTD. All rights reserved.
 # Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
 #
