Make the default path to encrypted data bags `/tmp` [GH-512]
This commit is contained in:
parent
24895f2479
commit
27c83aef16
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue