1From 4ef42740538cefd3c1554aa4df5bcb1388ac927b Mon Sep 17 00:00:00 2001
2From: Sergio Prado <sergio.prado@e-labworks.com>
3Date: Tue, 16 Jan 2018 22:28:32 -0200
4Subject: [PATCH] Change shell script interpreter from /bin/bash to /bin/sh
5
6This will make the script more portable, making it possible to run on
7systems that do not have bash.
8
9Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com>
10---
11 aoe-stat.in | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14diff --git a/aoe-stat.in b/aoe-stat.in
15index 50e6ac674169..0c1d6f5ebe1e 100755
16--- a/aoe-stat.in
17+++ b/aoe-stat.in
18@@ -1,4 +1,4 @@
19-#! /bin/bash
20+#! /bin/sh
21 # aoe-stat - collate and present information about AoE storage
22 # Copyright 2012, CORAID, Inc., and licensed under GPL v.2.
23
24--
251.9.1
26
27