(typo)
[vagrant-dotfiles.git] / lib / config.rb
1
2 module VagrantPlugins
3 module VagrantDotfiles
4 class Config < Vagrant.plugin("2", :config)
5 attr_accessor :user_home
6
7 def initialize
8 @user_home = UNSET_VALUE
9 end
10
11 def finalize!
12 @user_home = '/home/vagrant' if @user_home == UNSET_VALUE
13 end
14
15 end # class
16 end # module vdt
17 end # module vp
18