Update upgrade_gitea

This commit is contained in:
Christian P. MOMON 2023-05-03 09:54:49 +00:00
parent 965b813b9e
commit 042773e1ba
1 changed files with 7 additions and 0 deletions

View File

@ -46,5 +46,12 @@ else
# Start. # Start.
#systemctl start gitea #systemctl start gitea
echo "Please, check then start the service Gitea."
read -e -p "Start Gitea service? [Y/n] " choice
if [[ "$choice" =~ ^[yY]$ ]]; then
echo "Restarting…"
systemctl start gitea
journalctl -f -u gitea
fi
fi fi
fi fi