src/main/resources/shell/stop.sh.in [1:11]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #!/usr/bin/env bash # Check if we're root and re-execute if we're not. rootcheck() { if [ $(id -u) != "0" ]; then sudo "$0" "$@" exit $? fi } rootcheck "${@}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/main/resources/shell/update-dependencies.sh.in [1:11]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #!/usr/bin/env bash # Check if we're root and re-execute if we're not. rootcheck() { if [ $(id -u) != "0" ]; then sudo "$0" "$@" exit $? fi } rootcheck "${@}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -