1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Gaudenz Steinlin <gaudenz@debian.org>
Date: Tue, 18 Aug 2015 13:26:13 +0200
Subject: Run sshallsinfo with /bin/bash
The sshallsinfo script contains bash specific code. As this is only an
example and not in any performance critical path it's not worth
converting this to pure POSIX shell code.
Closes: #772366
---
addon/sshallsinfo | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/addon/sshallsinfo b/addon/sshallsinfo
index 8934dc9..d743d72 100755
--- a/addon/sshallsinfo
+++ b/addon/sshallsinfo
@@ -1,4 +1,4 @@
-#! /bin/sh
+#! /bin/bash
#set -x
|