fix variable
This commit is contained in:
parent
27b86b078a
commit
87bc2852b3
|
@ -64,7 +64,7 @@ namespace :site do
|
|||
puts "Traffic heavy?[Default No]:......"
|
||||
traffic_heavy = false
|
||||
traffic_heavy = STDIN.gets.gsub("\n",'')
|
||||
traffic_heavy = true if site_is_primary.downcase == 'yes'
|
||||
traffic_heavy = true if traffic_heavy.downcase == 'yes'
|
||||
|
||||
@traffic_rate = traffic_heavy ? 2 : 1
|
||||
|
||||
|
|
Loading…
Reference in New Issue