From be5c317bba5b1fe23d0207237791f89e482bde17 Mon Sep 17 00:00:00 2001
From: Stefan Galinski <stefan@sgalinski.de>
Date: Sat, 25 Apr 2015 18:13:15 +0200
Subject: [PATCH] [FEATURE][!!!] Add option to define if a directory must be
 synchronized (false by default)

---
 attributes/default.rb | 6 ++++--
 recipes/default.rb    | 4 ++++
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/attributes/default.rb b/attributes/default.rb
index b0bed3c..f7b2143 100644
--- a/attributes/default.rb
+++ b/attributes/default.rb
@@ -40,14 +40,16 @@ default['typo3_site']['solr']['cores'] = [
 #		:hostname => 'deploy.site.com',
 #		:port => 22,
 #		:remote => '~/site/fileadmin/',
-#		:local => 'fileadmin'
+#		:local => 'fileadmin',
+#		:sync => true
 #	},
 #	{
 #		:user => 'vagrant',
 #		:hostname => 'deploy.site.com',
 #		:port => 22,
 #		:remote => '~/site/uploads/',
-#		:local => 'uploads'
+#		:local => 'uploads',
+#		:sync => true
 #	}
 #]
 default['typo3_site']['sync_directories'] = []
diff --git a/recipes/default.rb b/recipes/default.rb
index 09c228a..36ebd17 100644
--- a/recipes/default.rb
+++ b/recipes/default.rb
@@ -238,6 +238,10 @@ node['typo3_site']['sync_directories'].each do |sync_data|
 		user 'vagrant'
 		group 'vagrant'
 		timeout 3000000
+		only_if {
+			sync_data['sync'] or not ::File.exists?("#{node['typo3_site']['webroot']}/#{node['typo3_site']['hostname']}/#{sync_data['local']}")
+		}
+
 		code <<-EOF
 			rsync --delete -auvz --progress -e "ssh -p #{sync_data['port']} -o StrictHostKeyChecking=no" \
 				--no-o --no-g #{sync_data['user']}@#{sync_data['hostname']}:#{sync_data['remote']} \
-- 
GitLab