source to bash

This commit is contained in:
qiaofeng1227 2023-10-17 08:37:11 +08:00
parent eb3f82d0d1
commit 0b69e80e4d

View File

@ -370,7 +370,7 @@ check_ports $http_port $https_port $port
install_tools
download_source
source $install_path/install/install_docker.sh
bash $install_path/install/install_docker.sh
if [ $? -ne 0 ]; then
echo "install_docker failed with error $?. Exiting."
exit 1
@ -378,13 +378,13 @@ fi
install_backends
source $install_path/install/install_cockpit.sh
bash $install_path/install/install_cockpit.sh
if [ $? -ne 0 ]; then
echo "install_cockpit failed with error $?. Exiting."
exit 1
fi
source $install_path/install/install_plugins.sh
bash $install_path/install/install_plugins.sh
if [ $? -ne 0 ]; then
echo "install_plugins failed with error $?. Exiting."
exit 1