My company is starting to grow our Linux support and some of our shell scripts are starting to get more complex. Today we use the shebang as
#! /bin/sh
but we are having problems with some distros like Ubuntu for example where sh points to dash and some more exotic.
My question is, what is the risk in changing the shebang to bash for example? Maybe the better question is if it is possible to have a distro without bash these days?