#2241 moved chmod up before verify_shared_folders check

This commit is contained in:
Ben Tse 2013-09-19 14:26:35 -04:00
parent 623aa0bb3a
commit cd79563837
1 changed files with 5 additions and 5 deletions

View File

@ -48,17 +48,17 @@ module VagrantPlugins
check << guest_path check << guest_path
end end
verify_shared_folders(check)
# Verify Puppet is installed and run it
verify_binary("puppet")
# Make sure the temporary directory is properly set up # Make sure the temporary directory is properly set up
@machine.communicate.tap do |comm| @machine.communicate.tap do |comm|
comm.sudo("mkdir -p #{config.temp_dir}") comm.sudo("mkdir -p #{config.temp_dir}")
comm.sudo("chmod 0777 #{config.temp_dir}") comm.sudo("chmod 0777 #{config.temp_dir}")
end end
verify_shared_folders(check)
# Verify Puppet is installed and run it
verify_binary("puppet")
# Upload Hiera configuration if we have it # Upload Hiera configuration if we have it
@hiera_config_path = nil @hiera_config_path = nil
if config.hiera_config_path if config.hiera_config_path