Skip to content
This repository has been archived by the owner on Apr 29, 2019. It is now read-only.

Commit

Permalink
Merge pull request #320 from abcdabcd987/bugfix
Browse files Browse the repository at this point in the history
Fix USE_KUBE_UI and BOX_TIMEOUT_COUNT
  • Loading branch information
bmcustodio authored Oct 27, 2018
2 parents 40494c2 + f496edc commit aacc437
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Binary file added .swp
Binary file not shown.
5 changes: 2 additions & 3 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,9 @@ DNS_DOMAIN = ENV["DNS_DOMAIN"] || "cluster.local"

SERIAL_LOGGING = (ENV["SERIAL_LOGGING"].to_s.downcase == "true")
GUI = (ENV["GUI"].to_s.downcase == "true")
USE_KUBE_UI = ENV["USE_KUBE_UI"] || false
USE_KUBE_UI = (ENV["USE_KUBE_UI"].to_s.downcase == "true") || false

BOX_TIMEOUT_COUNT = ENV["BOX_TIMEOUT_COUNT"] || 50
BOX_TIMEOUT_COUNT = BOX_TIMEOUT_COUNT.to_i
BOX_TIMEOUT_COUNT = (ENV["BOX_TIMEOUT_COUNT"] || 50).to_i

if enable_proxy
HTTP_PROXY = ENV["HTTP_PROXY"] || ENV["http_proxy"]
Expand Down

0 comments on commit aacc437

Please sign in to comment.