core: randomize perm test filename

This commit is contained in:
Mitchell Hashimoto 2014-04-05 09:36:55 -07:00
parent 444e01e32f
commit 1cd266da9d
2 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,8 @@
BUG FIXES:
- core: Randomize some filenames internally to improve the parallelism
of Vagrant. [GH-3386]
- core: Don't error if network problems cause box update check to
fail [GH-3391]
- guests/fedora: Fix hostname setting. [GH-3382]

View File

@ -516,7 +516,8 @@ module Vagrant
# Attempt to write into the home directory to verify we can
begin
path = @home_path.join("perm_test")
suffix = (0...32).map { (65 + rand(26)).chr }.join
path = @home_path.join("perm_test_#{suffix}")
path.open("w") do |f|
f.write("hello")
end