Properly fix GH-96
This commit is contained in:
parent
20373aa0d7
commit
12f121e6e4
2 changed files with 3 additions and 3 deletions
|
@ -11,11 +11,11 @@ module VagrantPlugins
|
||||||
def install
|
def install
|
||||||
if guest.capability?(:apt_cacher_dir)
|
if guest.capability?(:apt_cacher_dir)
|
||||||
if guest_path = guest.capability(:apt_cacher_dir)
|
if guest_path = guest.capability(:apt_cacher_dir)
|
||||||
synced_folder_type = machine.config.cache.synced_folder_opts[:type]
|
synced_folder_type = (machine.config.cache.synced_folder_opts || {})[:type]
|
||||||
if synced_folder_type && synced_folder_type.to_sym == :nfs
|
if synced_folder_type && synced_folder_type.to_sym == :nfs
|
||||||
symlink(guest_path)
|
symlink(guest_path)
|
||||||
else
|
else
|
||||||
@env[:ui].info I18n.t('vagrant_cachier.nfs_required', bucket: 'apt-cacher')
|
@env[:ui].warn I18n.t('vagrant_cachier.nfs_required', bucket: 'apt-cacher')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
|
|
|
@ -8,7 +8,7 @@ en:
|
||||||
Unknown cache scope '%{cache_scope}' (allowed scopes: %{allowed})
|
Unknown cache scope '%{cache_scope}' (allowed scopes: %{allowed})
|
||||||
nfs_required: |-
|
nfs_required: |-
|
||||||
The '%{bucket}' cache bucket requires NFS to be enabled, please add
|
The '%{bucket}' cache bucket requires NFS to be enabled, please add
|
||||||
`config.cache.synced_folder_opts = {type: :nfs}` to your Vagrantfile.
|
`config.cache.synced_folder_opts = {type: :nfs}` to your Vagrantfile.
|
||||||
will_fix_machine_cache_dir: |-
|
will_fix_machine_cache_dir: |-
|
||||||
A vagrant-cachier provider specific cache dir was found under
|
A vagrant-cachier provider specific cache dir was found under
|
||||||
'%{current_path}' and it will be moved to
|
'%{current_path}' and it will be moved to
|
||||||
|
|
Loading…
Reference in a new issue