From fbd05acb2cd4d8b83dd0c4cdf192c027bc0da1bd Mon Sep 17 00:00:00 2001 From: twistedR Date: Fri, 13 Sep 2013 16:13:39 -0400 Subject: [PATCH] Fixed the link to the init script The init script was pointing to the master branch rather than the 6-0-stable causing the rake gitlab:check to think it is out of date. --- doc/update/5.4-to-6.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/update/5.4-to-6.0.md b/doc/update/5.4-to-6.0.md index 0869dd833f9..3d58bee2bef 100644 --- a/doc/update/5.4-to-6.0.md +++ b/doc/update/5.4-to-6.0.md @@ -90,7 +90,7 @@ Note: We switched from Puma in GitLab 5.4 to unicorn in GitLab 6.0. ```bash sudo rm /etc/init.d/gitlab -sudo curl --output /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlabhq/master/lib/support/init.d/gitlab +sudo curl --output /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlabhq/6-0-stable/lib/support/init.d/gitlab sudo chmod +x /etc/init.d/gitlab ``` -- GitLab