Fixes #11218: Refresh apk cache when adding rsync

This ensures that rsync can be installed on an Alpine Linux system where
the apk cache may not be current.
This commit is contained in:
Jeff Bonhag 2019-11-26 13:00:28 -05:00
parent b03f8f5aac
commit b7000165d4
No known key found for this signature in database
GPG Key ID: 32966F3FB5AC1129
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ module VagrantPlugins
def self.rsync_install(machine)
machine.communicate.tap do |comm|
comm.sudo('apk add rsync')
comm.sudo('apk add --update-cache rsync')
end
end
end

View File

@ -16,9 +16,9 @@ describe 'VagrantPlugins::GuestAlpine::Cap::RSync' do
VagrantPlugins::GuestAlpine::Plugin.components.guest_capabilities[:alpine].get(:rsync_install)
end
it 'should install rsync' do
it 'should install rsync with --update-cache flag' do
# communicator.should_receive(:sudo).with('apk add rsync')
expect(communicator).to receive(:sudo).with('apk add rsync')
expect(communicator).to receive(:sudo).with('apk add --update-cache rsync')
allow_message_expectations_on_nil
described_class.rsync_install(machine)
end