From 0d561ddf941aded9ba21e052fc4624e9d2d91761 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 7 Jul 2015 16:21:34 -0600 Subject: [PATCH] guests/tinycore: fix rsync install on 64-bit b2d --- plugins/guests/tinycore/cap/rsync.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/guests/tinycore/cap/rsync.rb b/plugins/guests/tinycore/cap/rsync.rb index 7ee3c8fc1..15a54a17a 100644 --- a/plugins/guests/tinycore/cap/rsync.rb +++ b/plugins/guests/tinycore/cap/rsync.rb @@ -5,7 +5,7 @@ module VagrantPlugins def self.rsync_install(machine) machine.communicate.tap do |comm| # do not sudo tce-load - comm.execute("tce-load -wi rsync") + comm.execute("tce-load -wi acl attr rsync") end end end