Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
ff7e8080
Commit
ff7e8080
authored
Jun 05, 2013
by
Axilleas Pipinellis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Read init script recipe from Rails.root path. Fix #4174
Signed-off-by:
Axilleas Pipinellis
<
axilleas@archlinux.gr
>
parent
b9d989dc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
lib/tasks/gitlab/check.rake
lib/tasks/gitlab/check.rake
+3
-1
No files found.
lib/tasks/gitlab/check.rake
View file @
ff7e8080
...
...
@@ -138,13 +138,15 @@ namespace :gitlab do
def
check_init_script_up_to_date
print
"Init script up-to-date? ... "
recipe_path
=
Rails
.
root
.
join
(
"lib/support/init.d/"
,
"gitlab"
)
script_path
=
"/etc/init.d/gitlab"
unless
File
.
exists?
(
script_path
)
puts
"can't check because of previous errors"
.
magenta
return
end
recipe_content
=
`curl https://raw.github.com/gitlabhq/gitlab-recipes/master/init.d/gitlab 2>/dev/null`
recipe_content
=
File
.
read
(
recipe_path
)
script_content
=
File
.
read
(
script_path
)
if
recipe_content
==
script_content
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment