From 3b64f189020fd73211ee93f01fedd009cdff5d9c Mon Sep 17 00:00:00 2001
From: Stefan Galinski <stefan@sgalinski.de>
Date: Sat, 14 Feb 2015 14:55:01 +0100
Subject: [PATCH] [FEATURE] Allow the creation of custom symlinks

---
 attributes/default.rb | 11 ++++++++++-
 recipes/default.rb    | 11 +++++++++++
 2 files changed, 21 insertions(+), 1 deletion(-)

diff --git a/attributes/default.rb b/attributes/default.rb
index 48fa99c..c6f737f 100644
--- a/attributes/default.rb
+++ b/attributes/default.rb
@@ -44,4 +44,13 @@ default['typo3_site']['sync_directories'] = []
 #		]
 #	}
 #]
-default['typo3_site']['sync_databases'] = []
\ No newline at end of file
+default['typo3_site']['sync_databases'] = []
+
+# Example:
+# [
+#   {
+#       :source => '/var/www/mySite/fileadmin',
+#       :target => '/var/www/fileadmin',
+#   }
+# ]
+default['typo3_site']['create_links'] = []
\ No newline at end of file
diff --git a/recipes/default.rb b/recipes/default.rb
index f54f1e9..d8ba999 100644
--- a/recipes/default.rb
+++ b/recipes/default.rb
@@ -168,6 +168,17 @@ node['typo3_site']['sync_directories'].each do |sync_data|
 	end
 end
 
+####################
+### Create Links ###
+####################
+
+
+node['typo3_site']['create_links'].each do |link_data|
+	link link_data['source'] do
+		to link_data['target']
+	end
+end
+
 ###################
 ### Setup MySQL ###
 ###################
-- 
GitLab