removed the kickstart wget request

the application should already be kickstarted when gitlab:check rake
task is executed.
This commit is contained in:
Sameer Naik 2014-04-29 00:53:06 +05:30
parent f5f7e7786a
commit b8e8f2f6ef

View File

@ -433,13 +433,6 @@ EOF
esac
crontab -u git /tmp/cron.git && rm -rf /tmp/cron.git
# kickstart the rails application
if [ "${GITLAB_HTTPS}" == "true" ]; then
wget --no-check-certificate "https://${GITLAB_HOST}" -O /dev/null
else
wget "http://${GITLAB_HOST}" -O /dev/null
fi
# watch the access logs
tail -F /var/log/nginx/gitlab_access.log
}