plugins/provisioners/ansible/config/guest.rb in vagrant-unbundled-1.9.8.1 vs plugins/provisioners/ansible/config/guest.rb in vagrant-unbundled-2.0.0.1
- old
+ new
@@ -9,31 +9,28 @@
attr_accessor :provisioning_path
attr_accessor :tmp_path
attr_accessor :install
attr_accessor :install_mode
attr_accessor :pip_args
- attr_accessor :version
def initialize
super
@install = UNSET_VALUE
@install_mode = UNSET_VALUE
@pip_args = UNSET_VALUE
@provisioning_path = UNSET_VALUE
@tmp_path = UNSET_VALUE
- @version = UNSET_VALUE
end
def finalize!
super
@install = true if @install == UNSET_VALUE
@install_mode = :default if @install_mode == UNSET_VALUE
@pip_args = "" if @pip_args == UNSET_VALUE
@provisioning_path = "/vagrant" if provisioning_path == UNSET_VALUE
@tmp_path = "/tmp/vagrant-ansible" if tmp_path == UNSET_VALUE
- @version = "" if @version == UNSET_VALUE
end
def validate(machine)
super