File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -56,8 +56,10 @@ VAGRANTFILE_API_VERSION = "2"
56
56
Vagrant . configure ( VAGRANTFILE_API_VERSION ) do |config |
57
57
if ENV [ 'CONTIV_NODE_OS' ] && ENV [ 'CONTIV_NODE_OS' ] == "centos" then
58
58
config . vm . box = "contiv/centos71-netplugin"
59
+ config . vm . box_version = "0.2.0"
59
60
else
60
61
config . vm . box = "contiv/ubuntu1504-netplugin"
62
+ config . vm . box_version = "0.2.0"
61
63
end
62
64
num_nodes = 1
63
65
if ENV [ 'CONTIV_NODES' ] && ENV [ 'CONTIV_NODES' ] != "" then
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ BUILD_PKGS=$1
13
13
14
14
echo " +++ Checking Go version..."
15
15
ver=$( go version | awk ' {print $3}' )
16
- minVer=" go1.4.2 "
17
- maxVer=" go1.4.2 "
16
+ minVer=" go1.5.1 "
17
+ maxVer=" go1.5.1 "
18
18
if [[ ${ver} < ${minVer} ]]; then
19
19
echo " !!! Go version check failed. Expected >=${minVer} but found ${ver} "
20
20
exit 1
You can’t perform that action at this time.
0 commit comments