Skip to content
Snippets Groups Projects
Commit 3b64f189 authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

[FEATURE] Allow the creation of custom symlinks

parent 266c8b74
No related branches found
No related tags found
No related merge requests found
......@@ -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
......@@ -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 ###
###################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment