Make the default path to encrypted data bags `/tmp` [GH-512]

This commit is contained in:
Mitchell Hashimoto 2011-11-30 14:26:13 -08:00
parent 24895f2479
commit 27c83aef16
2 changed files with 3 additions and 1 deletions

View File

@ -20,6 +20,8 @@
`vi` and `emacs`. [GH-515]
- More correct guest addition version checking. [GH-514]
- Chef solo support on Windows is improved. [GH-542]
- Put encrypted data bag secret into `/tmp` by default so that
permissions are almost certainly guaranteed. [GH-512]
## 0.8.7 (September 13, 2011)

View File

@ -26,7 +26,7 @@ module Vagrant
@file_cache_path = "/srv/chef/file_store"
@file_backup_path = "/srv/chef/cache"
@encrypted_data_bag_secret_key_path = nil
@encrypted_data_bag_secret = "/etc/chef/encrypted_data_bag_secret"
@encrypted_data_bag_secret = "/tmp/encrypted_data_bag_secret"
end
def validate(errors)