Skip to content
Snippets Groups Projects
Commit ff7e8080 authored by Achilleas Pipinellis's avatar Achilleas Pipinellis
Browse files

Read init script recipe from Rails.root path. Fix #4174

parent b9d989dc
No related branches found
No related tags found
1 merge request!4204Read init script recipe from Rails.root path. Fix #4174
Loading
Loading
@@ -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
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment