WallarooLabs / wally

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

Use `bash` instead of `sh` in ansible generate_inventory.sh #3143

Closed aturley closed 4 years ago

aturley commented 4 years ago

The script uses Bash features. It was using /bin/sh, as the interpreter, which works on systems like Mac OS that use /bin/bash when you call for /bin/sh, but fails on systems that do not do this.

This change will make the script work correctly on all systems.

closes #3142