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

[BUGFIX] More robust integration of the SiteConfiguration.php

parent 15fc1874
No related branches found
No related tags found
No related merge requests found
......@@ -210,25 +210,6 @@ bash 'Setup TYPO3' do
action :run
end
###########################################
### Provide site specific configuration ###
###########################################
directory "#{node['typo3_site']['webroot']}/#{node['typo3_site']['hostname']}/typo3conf/" do
owner 'vagrant'
mode '0755'
action :create
end
template "#{node['typo3_site']['webroot']}/#{node['typo3_site']['hostname']}/typo3conf/#{node['typo3_site']['site_configuration']}" do
source 'SiteConfiguration.erb'
owner 'vagrant'
mode '0660'
variables ({
:group_id => data_bag['groupId']
})
end
#########################
### Synchronize Files ###
#########################
......@@ -261,6 +242,32 @@ node['typo3_site']['create_links'].each do |link_data|
end
end
###########################################
### Provide site specific configuration ###
###########################################
directory "#{node['typo3_site']['webroot']}/#{node['typo3_site']['hostname']}/typo3conf/" do
owner 'vagrant'
mode '0755'
action :create
end
template "#{node['typo3_site']['webroot']}/#{node['typo3_site']['hostname']}/typo3conf/#{node['typo3_site']['site_configuration']}" do
source 'SiteConfiguration.php.erb'
owner 'vagrant'
mode '0660'
variables ({
:group_id => data_bag['groupId']
})
end
template "#{node['typo3_site']['webroot']}/#{node['typo3_site']['hostname']}/typo3conf/AdditionalConfiguration.php" do
source 'AdditionalConfiguration.php.erb'
owner 'vagrant'
mode '0660'
action :create_if_missing
end
###################
### Setup MySQL ###
###################
......
<?php
require_once('SiteConfiguration.php');
\ No newline at end of file
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