From 26fe5ac89f4499e024f6ab12d87f97d61b212a86 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 8 Jul 2015 09:47:48 -0600 Subject: [PATCH] guests/tinycore: more robust rsync install --- plugins/guests/tinycore/cap/rsync.rb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/plugins/guests/tinycore/cap/rsync.rb b/plugins/guests/tinycore/cap/rsync.rb index 15a54a17a..674ba349b 100644 --- a/plugins/guests/tinycore/cap/rsync.rb +++ b/plugins/guests/tinycore/cap/rsync.rb @@ -4,8 +4,11 @@ module VagrantPlugins class RSync def self.rsync_install(machine) machine.communicate.tap do |comm| - # do not sudo tce-load - comm.execute("tce-load -wi acl attr rsync") + # Run it but don't error check because this is always failing currently + comm.execute("tce-load -wi acl attr rsync", error_check: false) + + # Verify it by executing rsync + comm.execute("rsync --help") end end end