Sha256: 233e0019c9b962c4001fcdefa083abb89d281919ce36402b40c630bbebc796f5
Contents?: true
Size: 881 Bytes
Versions: 3
Compression:
Stored size: 881 Bytes
Contents
include_recipe "imagemagick" include_recipe "imagemagick::devel" include_recipe "database::mysql" include_recipe "git" include_recipe "passenger_apache2" include_recipe "passenger_apache2::mod_rails" # create a mysql database mysql_database node['mysql']['database'] do connection ({:host => node['mysql']['hostname'], :username => "root", :password => node['mysql']['server_root_password']}) action :create end mysql_database_user node['mysql']['username'] do connection ({:host => node['mysql']['hostname'], :username => "root", :password => node['mysql']['server_root_password']}) password node['mysql']['password'] action :create end mysql_database_user node['mysql']['username'] do connection ({:host => node['mysql']['hostname'], :username => "root", :password => node['mysql']['server_root_password']}) password node['mysql']['password'] action :grant end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
fast_food-0.1.2 | chef/cookbooks/fast_food/recipes/default.rb |
fast_food-0.1.1 | chef/cookbooks/fast_food/recipes/default.rb |
fast_food-0.1.0 | chef/cookbooks/fast_food/recipes/default.rb |