Dev set up

This commit is contained in:
2019-07-01 10:15:24 -04:00
parent da1a3d5491
commit 23a4e98668
340 changed files with 23143 additions and 41 deletions

View File

@ -0,0 +1,4 @@
template "#{node['php']['working-dir']}/application/config/database.php" do
source 'ci/database.php.erb'
mode '0755'
end

View File

@ -0,0 +1,8 @@
cookbook_file '/tmp/datacom_abc.sql' do
source 'datacom_abc.sql'
end
execute 'Seed MySQL DB' do
command "mysql -h localhost -u\"#{node['db']['user']}\" -p\"#{node['db']['password']}\" \"#{node['db']['name']}\" < /tmp/datacom_abc.sql"
not_if "$(mysql -h 127.0.0.1 -uroot -p\"#{node['db']['root_password']}\" \"#{node['db']['name']}\" -sse \"select count(*) from test_dec;\") -gt 0"
end