Update upgrade_gitea
This commit is contained in:
parent
965b813b9e
commit
042773e1ba
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue