Restart gitaly before gitlab:check in postinst

This commit is contained in:
Pirate Praveen 2018-12-15 13:14:01 +05:30
parent 452626d55f
commit d549bfbb1a

View file

@ -336,6 +336,10 @@ esac
case "$1" in
configure)
if command -v gitaly > /dev/null; then
echo "Restarting gitaly..."
invoke-rc.d gitaly restart
fi
echo "Running rake checks..."
gitlab-rake gitlab:check
;;