├── .gitignore ├── .kitchen.yml ├── .travis.yml ├── Berksfile ├── Cheffile ├── Gemfile ├── README.md ├── Rakefile ├── Vagrantfile ├── Vagrantfile.chef ├── attributes ├── apc.rb ├── default.rb ├── download_drupal.rb ├── get_project.rb ├── install.rb └── nginx.rb ├── dev-notes.md ├── files └── default │ └── test │ ├── default_test.rb │ └── nginx_test.rb ├── metadata.rb ├── recipes ├── apc.rb ├── cron.rb ├── default.rb ├── dependencies.rb ├── download_drupal.rb ├── get_project.rb ├── install.rb ├── nginx.rb └── xhprof.rb ├── templates └── default │ ├── deploy-drupal.ini.erb │ ├── drupal-perm.sh.erb │ ├── drupal-reset.sh.erb │ ├── nginx_site.erb │ ├── rpaf.conf.erb │ ├── settings.local.php.erb │ ├── web_app.conf.erb │ └── xhprof.ini.erb └── test └── knife.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *swp 2 | *swo 3 | .vagrant 4 | -------------------------------------------------------------------------------- /.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/.kitchen.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/.travis.yml -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/Berksfile -------------------------------------------------------------------------------- /Cheffile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/Cheffile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/Vagrantfile -------------------------------------------------------------------------------- /Vagrantfile.chef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/Vagrantfile.chef -------------------------------------------------------------------------------- /attributes/apc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/attributes/apc.rb -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /attributes/download_drupal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/attributes/download_drupal.rb -------------------------------------------------------------------------------- /attributes/get_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/attributes/get_project.rb -------------------------------------------------------------------------------- /attributes/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/attributes/install.rb -------------------------------------------------------------------------------- /attributes/nginx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/attributes/nginx.rb -------------------------------------------------------------------------------- /dev-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/dev-notes.md -------------------------------------------------------------------------------- /files/default/test/default_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/files/default/test/default_test.rb -------------------------------------------------------------------------------- /files/default/test/nginx_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/files/default/test/nginx_test.rb -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/apc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/recipes/apc.rb -------------------------------------------------------------------------------- /recipes/cron.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/recipes/cron.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /recipes/dependencies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/recipes/dependencies.rb -------------------------------------------------------------------------------- /recipes/download_drupal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/recipes/download_drupal.rb -------------------------------------------------------------------------------- /recipes/get_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/recipes/get_project.rb -------------------------------------------------------------------------------- /recipes/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/recipes/install.rb -------------------------------------------------------------------------------- /recipes/nginx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/recipes/nginx.rb -------------------------------------------------------------------------------- /recipes/xhprof.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/recipes/xhprof.rb -------------------------------------------------------------------------------- /templates/default/deploy-drupal.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/templates/default/deploy-drupal.ini.erb -------------------------------------------------------------------------------- /templates/default/drupal-perm.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/templates/default/drupal-perm.sh.erb -------------------------------------------------------------------------------- /templates/default/drupal-reset.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/templates/default/drupal-reset.sh.erb -------------------------------------------------------------------------------- /templates/default/nginx_site.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/templates/default/nginx_site.erb -------------------------------------------------------------------------------- /templates/default/rpaf.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/templates/default/rpaf.conf.erb -------------------------------------------------------------------------------- /templates/default/settings.local.php.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/templates/default/settings.local.php.erb -------------------------------------------------------------------------------- /templates/default/web_app.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/templates/default/web_app.conf.erb -------------------------------------------------------------------------------- /templates/default/xhprof.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/templates/default/xhprof.ini.erb -------------------------------------------------------------------------------- /test/knife.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolvingweb/chef-deploy-drupal/HEAD/test/knife.rb --------------------------------------------------------------------------------