fix(coreos-base/oem-vagrant): Update minimum version to 1.6.0

Commits 24cdca8e and 9d2c0169 added options only in 1.6 and later,
breaking compatibility with older versions. Update the minimum version
to make the resulting error more obvious. :)

The coreos-vagrant project already required 1.6 (although not
explicitly, probably should fix that) so most uses probably won't notice.
This commit is contained in:
Michael Marineau 2014-06-16 15:25:14 -07:00
parent 21e77edce2
commit 124d3809bb
2 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
# -*- mode: ruby -*-
# # vi: set ft=ruby :
if Vagrant::VERSION < "1.5.0"
raise "Need at least vagrant version 1.5.0, please update"
if Vagrant::VERSION < "1.6.0"
raise "Need at least vagrant version 1.6.0, please update"
end
require_relative 'change_host_name.rb'