Skip to content

Commit

Permalink
(PE-17825) added older version compability
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
phongdly committed Oct 10, 2016
1 parent f17b509 commit d4d1646
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/beaker-pe/install/pe_utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,11 @@ def do_higgs_install host, opts

#wait for output to host['higgs_file']
#we're all done when we find this line in the PE installation log
higgs_re = /o\s+to\s+https:\/\/.*\s+in\s+your\s+browser\s+to\s+continue\s+installation/m
if version_is_less(options[:pe_ver] || host['pe_ver'], '2016.3')
higgs_re = /Please\s+go\s+to\s+https:\/\/.*\s+in\s+your\s+browser\s+to\s+continue\s+installation/m
else
higgs_re = /o\s+to\s+https:\/\/.*\s+in\s+your\s+browser\s+to\s+continue\s+installation/m
end
res = Result.new(host, 'tmp cmd')
tries = 10
attempts = 0
Expand Down

0 comments on commit d4d1646

Please sign in to comment.