WallarooLabs / wally

Distributed Stream Processing
https://www.wallaroolabs.com
Apache License 2.0
1.48k stars 69 forks source link

Use `/bin/bash` instead of `/bin/sh` in ansible `generate_inventory.sh` #3142

Closed aturley closed 4 years ago

aturley commented 4 years ago

The ansible generate_inventory.sh script uses Bash features but the shell is set to /bin/sh. This works on systems like Mac OS where /bin/bash is used when you call /bin/sh, but fails on systems that have /bin/sh.

The script should use /bin/bash if it is going to use Bash features.