12345678910111213141516171819 |
- Subject: Change shell script interpreter from /bin/bash to /bin/sh
- Origin: aoetools-36-9-g4ef4274 <https://github.com/OpenAoE/aoetools/commit/aoetools-36-9-g4ef4274>
- Upstream-Author: Sergio Prado <sergio.prado@e-labworks.com>
- Date: Tue Jan 16 22:28:32 2018 -0200
- Forwarded: not-needed (cherry-picked)
- This will make the script more portable, making it possible to run on
- systems that do not have bash.
- Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com>
- --- a/aoe-stat.in
- +++ b/aoe-stat.in
- @@ -1,4 +1,4 @@
- -#! /bin/bash
- +#! /bin/sh
- # aoe-stat - collate and present information about AoE storage
- # Copyright 2012, CORAID, Inc., and licensed under GPL v.2.
-
|