Update install.sh

This commit is contained in:
qiaofeng1227 2022-08-16 14:19:46 +08:00 committed by GitHub
parent af22a11aaf
commit 70c8c93dc5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -76,4 +76,9 @@ sudo git clone --depth=1 https://github.com/Websoft9/stackhub.git
cd stackhub/apps
sudo echo "localhost" > hosts
ansible-playbook -i hosts application.yml -c local -e init=$repo_init -e appname=$repo_name
echo "System must restart after 2s, then installation completed"; sleep 2 ; sudo reboot
if [ "$?"= "0" ]; then
echo "System must restart after 2s, then installation completed"; sleep 2 ; sudo reboot
else
echo "Ansible execute error!" 1>&2
exit 1
fi