Skip to content

Commit

Permalink
Merge pull request #2 from dillera/master
Browse files Browse the repository at this point in the history
fixed installdisk var to work on vagrant reboot for File.exist
  • Loading branch information
halfmanhalftaco authored Nov 14, 2018
2 parents 7b73953 + 60ac93e commit cd5e8bc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ bridgenic = 'eth0'
#####


installdisk = './installdisk.vdi'
current_dir = File.dirname(File.expand_path(__FILE__))
disk_prefix = 'installdisk'
disk_ext ='.vdi'
installdisk = "%s/%s%s" % [current_dir,disk_prefix,disk_ext]


Vagrant.configure("2") do |config|

Expand Down

0 comments on commit cd5e8bc

Please sign in to comment.