├── .gitignore ├── Berksfile ├── Berksfile.lock ├── README.txt ├── Vagrantfile ├── chef ├── cookbooks │ ├── berks │ │ ├── Berksfile.lock │ │ ├── apache2 │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── attributes │ │ │ │ ├── default.rb │ │ │ │ ├── mod_auth_cas.rb │ │ │ │ ├── mod_auth_openid.rb │ │ │ │ ├── mod_fastcgi.rb │ │ │ │ ├── mod_pagespeed.rb │ │ │ │ └── mod_ssl.rb │ │ │ ├── definitions │ │ │ │ ├── apache_conf.rb │ │ │ │ ├── apache_module.rb │ │ │ │ ├── apache_site.rb │ │ │ │ └── web_app.rb │ │ │ ├── files │ │ │ │ └── default │ │ │ │ │ ├── apache2_module_conf_generate.pl │ │ │ │ │ └── tests │ │ │ │ │ └── minitest │ │ │ │ │ ├── default_test.rb │ │ │ │ │ ├── god_monitor_test.rb │ │ │ │ │ ├── mod_apreq2_test.rb │ │ │ │ │ ├── mod_auth_cas_test.rb │ │ │ │ │ ├── mod_auth_openid_test.rb │ │ │ │ │ ├── mod_cgi_test.rb │ │ │ │ │ ├── mod_dav_svn_test.rb │ │ │ │ │ ├── mod_fastcgi.rb │ │ │ │ │ ├── mod_include_test.rb │ │ │ │ │ ├── mod_perl_test.rb │ │ │ │ │ ├── mod_php5_test.rb │ │ │ │ │ ├── mod_python_test.rb │ │ │ │ │ ├── mod_ssl_test.rb │ │ │ │ │ └── support │ │ │ │ │ └── helpers.rb │ │ │ ├── metadata.json │ │ │ ├── recipes │ │ │ │ ├── default.rb │ │ │ │ ├── god_monitor.rb │ │ │ │ ├── iptables.rb │ │ │ │ ├── logrotate.rb │ │ │ │ ├── mod_actions.rb │ │ │ │ ├── mod_alias.rb │ │ │ │ ├── mod_apreq2.rb │ │ │ │ ├── mod_auth_basic.rb │ │ │ │ ├── mod_auth_cas.rb │ │ │ │ ├── mod_auth_digest.rb │ │ │ │ ├── mod_auth_openid.rb │ │ │ │ ├── mod_authn_file.rb │ │ │ │ ├── mod_authnz_ldap.rb │ │ │ │ ├── mod_authz_default.rb │ │ │ │ ├── mod_authz_groupfile.rb │ │ │ │ ├── mod_authz_host.rb │ │ │ │ ├── mod_authz_user.rb │ │ │ │ ├── mod_autoindex.rb │ │ │ │ ├── mod_cgi.rb │ │ │ │ ├── mod_cloudflare.rb │ │ │ │ ├── mod_dav.rb │ │ │ │ ├── mod_dav_fs.rb │ │ │ │ ├── mod_dav_svn.rb │ │ │ │ ├── mod_deflate.rb │ │ │ │ ├── mod_dir.rb │ │ │ │ ├── mod_env.rb │ │ │ │ ├── mod_expires.rb │ │ │ │ ├── mod_fastcgi.rb │ │ │ │ ├── mod_fcgid.rb │ │ │ │ ├── mod_filter.rb │ │ │ │ ├── mod_headers.rb │ │ │ │ ├── mod_include.rb │ │ │ │ ├── mod_info.rb │ │ │ │ ├── mod_jk.rb │ │ │ │ ├── mod_ldap.rb │ │ │ │ ├── mod_log_config.rb │ │ │ │ ├── mod_logio.rb │ │ │ │ ├── mod_mime.rb │ │ │ │ ├── mod_negotiation.rb │ │ │ │ ├── mod_pagespeed.rb │ │ │ │ ├── mod_perl.rb │ │ │ │ ├── mod_php5.rb │ │ │ │ ├── mod_proxy.rb │ │ │ │ ├── mod_proxy_ajp.rb │ │ │ │ ├── mod_proxy_balancer.rb │ │ │ │ ├── mod_proxy_connect.rb │ │ │ │ ├── mod_proxy_http.rb │ │ │ │ ├── mod_python.rb │ │ │ │ ├── mod_rewrite.rb │ │ │ │ ├── mod_setenvif.rb │ │ │ │ ├── mod_ssl.rb │ │ │ │ ├── mod_status.rb │ │ │ │ ├── mod_userdir.rb │ │ │ │ ├── mod_wsgi.rb │ │ │ │ └── mod_xsendfile.rb │ │ │ └── templates │ │ │ │ └── default │ │ │ │ ├── a2dismod.erb │ │ │ │ ├── a2dissite.erb │ │ │ │ ├── a2enmod.erb │ │ │ │ ├── a2ensite.erb │ │ │ │ ├── apache2.conf.erb │ │ │ │ ├── apache2.god.erb │ │ │ │ ├── charset.erb │ │ │ │ ├── default-site.erb │ │ │ │ ├── etc-sysconfig-httpd.erb │ │ │ │ ├── mods │ │ │ │ ├── README │ │ │ │ ├── alias.conf.erb │ │ │ │ ├── auth_cas.conf.erb │ │ │ │ ├── auth_cas.load.erb │ │ │ │ ├── authopenid.load.erb │ │ │ │ ├── autoindex.conf.erb │ │ │ │ ├── deflate.conf.erb │ │ │ │ ├── dir.conf.erb │ │ │ │ ├── fastcgi.conf.erb │ │ │ │ ├── fcgid.conf.erb │ │ │ │ ├── include.conf.erb │ │ │ │ ├── include.erb │ │ │ │ ├── info.conf.erb │ │ │ │ ├── mime.conf.erb │ │ │ │ ├── negotiation.conf.erb │ │ │ │ ├── pagespeed.conf.erb │ │ │ │ ├── php5.conf.erb │ │ │ │ ├── proxy.conf.erb │ │ │ │ ├── setenvif.conf.erb │ │ │ │ ├── ssl.conf.erb │ │ │ │ └── status.conf.erb │ │ │ │ ├── port_apache.erb │ │ │ │ ├── ports.conf.erb │ │ │ │ ├── security.erb │ │ │ │ └── web_app.conf.erb │ │ ├── apt │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── attributes │ │ │ │ └── default.rb │ │ │ ├── files │ │ │ │ └── default │ │ │ │ │ └── apt-proxy-v2.conf │ │ │ ├── libraries │ │ │ │ ├── helpers.rb │ │ │ │ ├── matchers.rb │ │ │ │ └── network.rb │ │ │ ├── metadata.json │ │ │ ├── providers │ │ │ │ ├── preference.rb │ │ │ │ └── repository.rb │ │ │ ├── recipes │ │ │ │ ├── cacher-client.rb │ │ │ │ ├── cacher-ng.rb │ │ │ │ └── default.rb │ │ │ ├── resources │ │ │ │ ├── preference.rb │ │ │ │ └── repository.rb │ │ │ └── templates │ │ │ │ ├── debian-6.0 │ │ │ │ └── acng.conf.erb │ │ │ │ ├── default │ │ │ │ ├── 01proxy.erb │ │ │ │ └── acng.conf.erb │ │ │ │ └── ubuntu-10.04 │ │ │ │ └── acng.conf.erb │ │ ├── aws │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── attributes │ │ │ │ └── default.rb │ │ │ ├── libraries │ │ │ │ ├── ec2.rb │ │ │ │ └── elb.rb │ │ │ ├── metadata.json │ │ │ ├── providers │ │ │ │ ├── ebs_raid.rb │ │ │ │ ├── ebs_volume.rb │ │ │ │ ├── elastic_ip.rb │ │ │ │ ├── elastic_lb.rb │ │ │ │ ├── resource_tag.rb │ │ │ │ └── s3_file.rb │ │ │ ├── recipes │ │ │ │ └── default.rb │ │ │ └── resources │ │ │ │ ├── ebs_raid.rb │ │ │ │ ├── ebs_volume.rb │ │ │ │ ├── elastic_ip.rb │ │ │ │ ├── elastic_lb.rb │ │ │ │ ├── resource_tag.rb │ │ │ │ └── s3_file.rb │ │ ├── build-essential │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── attributes │ │ │ │ └── default.rb │ │ │ ├── libraries │ │ │ │ ├── matchers.rb │ │ │ │ ├── timing.rb │ │ │ │ └── xcode_command_line_tools.rb │ │ │ ├── metadata.json │ │ │ └── recipes │ │ │ │ ├── _debian.rb │ │ │ │ ├── _fedora.rb │ │ │ │ ├── _freebsd.rb │ │ │ │ ├── _mac_os_x.rb │ │ │ │ ├── _omnios.rb │ │ │ │ ├── _rhel.rb │ │ │ │ ├── _smartos.rb │ │ │ │ ├── _solaris2.rb │ │ │ │ ├── _suse.rb │ │ │ │ └── default.rb │ │ ├── chef_handler │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── attributes │ │ │ │ └── default.rb │ │ │ ├── files │ │ │ │ └── default │ │ │ │ │ └── handlers │ │ │ │ │ └── README │ │ │ ├── libraries │ │ │ │ └── matchers.rb │ │ │ ├── metadata.json │ │ │ ├── providers │ │ │ │ └── default.rb │ │ │ ├── recipes │ │ │ │ ├── default.rb │ │ │ │ └── json_file.rb │ │ │ └── resources │ │ │ │ └── default.rb │ │ ├── database │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── libraries │ │ │ │ ├── matchers.rb │ │ │ │ ├── provider_database_mysql.rb │ │ │ │ ├── provider_database_mysql_user.rb │ │ │ │ ├── provider_database_postgresql.rb │ │ │ │ ├── provider_database_postgresql_schema.rb │ │ │ │ ├── provider_database_postgresql_user.rb │ │ │ │ ├── provider_database_sql_server.rb │ │ │ │ ├── provider_database_sql_server_user.rb │ │ │ │ ├── resource_database.rb │ │ │ │ ├── resource_database_user.rb │ │ │ │ ├── resource_mysql_database.rb │ │ │ │ ├── resource_mysql_database_user.rb │ │ │ │ ├── resource_postgresql_database.rb │ │ │ │ ├── resource_postgresql_database_schema.rb │ │ │ │ ├── resource_postgresql_database_user.rb │ │ │ │ ├── resource_sql_server_database.rb │ │ │ │ └── resource_sql_server_database_user.rb │ │ │ ├── metadata.json │ │ │ ├── recipes │ │ │ │ ├── default.rb │ │ │ │ ├── ebs_backup.rb │ │ │ │ ├── ebs_volume.rb │ │ │ │ ├── master.rb │ │ │ │ ├── mysql.rb │ │ │ │ ├── postgresql.rb │ │ │ │ └── snapshot.rb │ │ │ └── templates │ │ │ │ └── default │ │ │ │ ├── app_grants.sql.erb │ │ │ │ ├── aws_config.erb │ │ │ │ ├── chef-solo-database-snapshot.cron.erb │ │ │ │ ├── chef-solo-database-snapshot.json.erb │ │ │ │ ├── chef-solo-database-snapshot.rb.erb │ │ │ │ ├── ebs-backup-cron.erb │ │ │ │ ├── ebs-db-backup.sh.erb │ │ │ │ ├── ebs-db-restore.sh.erb │ │ │ │ └── s3cfg.erb │ │ ├── iis │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── attributes │ │ │ │ └── default.rb │ │ │ ├── libraries │ │ │ │ └── helper.rb │ │ │ ├── metadata.json │ │ │ ├── providers │ │ │ │ ├── app.rb │ │ │ │ ├── config.rb │ │ │ │ ├── module.rb │ │ │ │ ├── pool.rb │ │ │ │ └── site.rb │ │ │ ├── recipes │ │ │ │ ├── default.rb │ │ │ │ ├── mod_application_initialization.rb │ │ │ │ ├── mod_aspnet.rb │ │ │ │ ├── mod_auth_basic.rb │ │ │ │ ├── mod_auth_windows.rb │ │ │ │ ├── mod_cgi.rb │ │ │ │ ├── mod_compress_dynamic.rb │ │ │ │ ├── mod_compress_static.rb │ │ │ │ ├── mod_ftp.rb │ │ │ │ ├── mod_iis6_metabase_compat.rb │ │ │ │ ├── mod_isapi.rb │ │ │ │ ├── mod_logging.rb │ │ │ │ ├── mod_management.rb │ │ │ │ ├── mod_security.rb │ │ │ │ ├── mod_tracing.rb │ │ │ │ └── remove_default_site.rb │ │ │ └── resources │ │ │ │ ├── app.rb │ │ │ │ ├── config.rb │ │ │ │ ├── module.rb │ │ │ │ ├── pool.rb │ │ │ │ └── site.rb │ │ ├── iptables │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── definitions │ │ │ │ └── iptables_rule.rb │ │ │ ├── metadata.json │ │ │ ├── recipes │ │ │ │ ├── default.rb │ │ │ │ └── disabled.rb │ │ │ └── templates │ │ │ │ └── default │ │ │ │ ├── all_established.erb │ │ │ │ ├── all_icmp.erb │ │ │ │ ├── iptables_load.erb │ │ │ │ └── rebuild-iptables.erb │ │ ├── logrotate │ │ │ ├── Berksfile │ │ │ ├── Berksfile.lock │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── TESTING.md │ │ │ ├── attributes │ │ │ │ └── default.rb │ │ │ ├── definitions │ │ │ │ └── logrotate_app.rb │ │ │ ├── libraries │ │ │ │ └── logrotate_config.rb │ │ │ ├── metadata.json │ │ │ ├── recipes │ │ │ │ ├── default.rb │ │ │ │ └── global.rb │ │ │ └── templates │ │ │ │ └── default │ │ │ │ ├── logrotate-global.erb │ │ │ │ └── logrotate.erb │ │ ├── mysql-chef_gem │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── libraries │ │ │ │ ├── matchers.rb │ │ │ │ ├── provider_mysql_chef_gem.rb │ │ │ │ └── resource_mysql_chef_gem.rb │ │ │ ├── metadata.json │ │ │ └── recipes │ │ │ │ └── default.rb │ │ ├── mysql │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── attributes │ │ │ │ └── default.rb │ │ │ ├── libraries │ │ │ │ ├── helpers.rb │ │ │ │ ├── matchers.rb │ │ │ │ ├── provider_mysql_client.rb │ │ │ │ ├── provider_mysql_client_debian.rb │ │ │ │ ├── provider_mysql_client_fedora.rb │ │ │ │ ├── provider_mysql_client_freebsd.rb │ │ │ │ ├── provider_mysql_client_omnios.rb │ │ │ │ ├── provider_mysql_client_rhel.rb │ │ │ │ ├── provider_mysql_client_smartos.rb │ │ │ │ ├── provider_mysql_client_ubuntu.rb │ │ │ │ ├── provider_mysql_service.rb │ │ │ │ ├── provider_mysql_service_debian.rb │ │ │ │ ├── provider_mysql_service_fedora.rb │ │ │ │ ├── provider_mysql_service_freebsd.rb │ │ │ │ ├── provider_mysql_service_omnios.rb │ │ │ │ ├── provider_mysql_service_rhel.rb │ │ │ │ ├── provider_mysql_service_smartos.rb │ │ │ │ ├── provider_mysql_service_ubuntu.rb │ │ │ │ ├── resource_mysql_client.rb │ │ │ │ └── resource_mysql_service.rb │ │ │ ├── metadata.json │ │ │ ├── recipes │ │ │ │ ├── client.rb │ │ │ │ ├── server.rb │ │ │ │ └── server_deprecated.rb │ │ │ └── templates │ │ │ │ └── default │ │ │ │ ├── 5.0 │ │ │ │ └── my.cnf.erb │ │ │ │ ├── 5.1 │ │ │ │ └── my.cnf.erb │ │ │ │ ├── 5.5 │ │ │ │ └── my.cnf.erb │ │ │ │ ├── 5.6 │ │ │ │ └── my.cnf.erb │ │ │ │ ├── apparmor │ │ │ │ └── usr.sbin.mysqld.erb │ │ │ │ ├── debian │ │ │ │ ├── debian.cnf.erb │ │ │ │ └── mysql-server.seed.erb │ │ │ │ ├── deprecated │ │ │ │ └── my.cnf.erb │ │ │ │ ├── grants │ │ │ │ └── grants.sql.erb │ │ │ │ ├── omnios │ │ │ │ ├── mysql.xml.erb │ │ │ │ └── svc.method.mysqld.erb │ │ │ │ └── smartos │ │ │ │ ├── mysql.xml.erb │ │ │ │ └── svc.method.mysqld.erb │ │ ├── openssl │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── libraries │ │ │ │ └── secure_password.rb │ │ │ ├── metadata.json │ │ │ └── recipes │ │ │ │ └── default.rb │ │ ├── pacman │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── metadata.json │ │ │ ├── providers │ │ │ │ ├── aur.rb │ │ │ │ └── group.rb │ │ │ ├── recipes │ │ │ │ └── default.rb │ │ │ ├── resources │ │ │ │ ├── aur.rb │ │ │ │ └── group.rb │ │ │ └── spec │ │ │ │ └── spec_helper.rb │ │ ├── php │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── attributes │ │ │ │ └── default.rb │ │ │ ├── files │ │ │ │ └── windows │ │ │ │ │ └── go-pear.phar │ │ │ ├── libraries │ │ │ │ └── helpers.rb │ │ │ ├── metadata.json │ │ │ ├── providers │ │ │ │ ├── pear.rb │ │ │ │ └── pear_channel.rb │ │ │ ├── recipes │ │ │ │ ├── default.rb │ │ │ │ ├── ini.rb │ │ │ │ ├── module_apc.rb │ │ │ │ ├── module_curl.rb │ │ │ │ ├── module_fpdf.rb │ │ │ │ ├── module_gd.rb │ │ │ │ ├── module_ldap.rb │ │ │ │ ├── module_memcache.rb │ │ │ │ ├── module_mysql.rb │ │ │ │ ├── module_pgsql.rb │ │ │ │ ├── module_sqlite3.rb │ │ │ │ ├── package.rb │ │ │ │ └── source.rb │ │ │ ├── resources │ │ │ │ ├── pear.rb │ │ │ │ └── pear_channel.rb │ │ │ └── templates │ │ │ │ ├── centos │ │ │ │ └── php.ini.erb │ │ │ │ ├── debian │ │ │ │ └── php.ini.erb │ │ │ │ ├── default │ │ │ │ ├── extension.ini.erb │ │ │ │ └── php.ini.erb │ │ │ │ ├── redhat │ │ │ │ └── php.ini.erb │ │ │ │ ├── ubuntu │ │ │ │ └── php.ini.erb │ │ │ │ └── windows │ │ │ │ ├── pear-options.erb │ │ │ │ └── php.ini.erb │ │ ├── postgresql │ │ │ ├── Berksfile │ │ │ ├── Berksfile.lock │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── TESTING.md │ │ │ ├── attributes │ │ │ │ └── default.rb │ │ │ ├── files │ │ │ │ └── default │ │ │ │ │ └── tests │ │ │ │ │ └── minitest │ │ │ │ │ ├── apt_pgdg_postgresql_test.rb │ │ │ │ │ ├── default_test.rb │ │ │ │ │ ├── ruby_test.rb │ │ │ │ │ ├── server_test.rb │ │ │ │ │ └── support │ │ │ │ │ └── helpers.rb │ │ │ ├── libraries │ │ │ │ └── default.rb │ │ │ ├── metadata.json │ │ │ ├── recipes │ │ │ │ ├── apt_pgdg_postgresql.rb │ │ │ │ ├── client.rb │ │ │ │ ├── config_initdb.rb │ │ │ │ ├── config_pgtune.rb │ │ │ │ ├── contrib.rb │ │ │ │ ├── default.rb │ │ │ │ ├── ruby.rb │ │ │ │ ├── server.rb │ │ │ │ ├── server_debian.rb │ │ │ │ ├── server_redhat.rb │ │ │ │ └── yum_pgdg_postgresql.rb │ │ │ └── templates │ │ │ │ └── default │ │ │ │ ├── pg_hba.conf.erb │ │ │ │ ├── pgsql.sysconfig.erb │ │ │ │ └── postgresql.conf.erb │ │ ├── windows │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── attributes │ │ │ │ └── default.rb │ │ │ ├── files │ │ │ │ └── default │ │ │ │ │ └── handlers │ │ │ │ │ └── windows_reboot_handler.rb │ │ │ ├── libraries │ │ │ │ ├── feature_base.rb │ │ │ │ ├── matchers.rb │ │ │ │ ├── powershell_helper.rb │ │ │ │ ├── powershell_out.rb │ │ │ │ ├── registry_helper.rb │ │ │ │ ├── version.rb │ │ │ │ ├── windows_architecture_helper.rb │ │ │ │ ├── windows_helper.rb │ │ │ │ └── windows_privileged.rb │ │ │ ├── metadata.json │ │ │ ├── providers │ │ │ │ ├── auto_run.rb │ │ │ │ ├── batch.rb │ │ │ │ ├── feature_dism.rb │ │ │ │ ├── feature_powershell.rb │ │ │ │ ├── feature_servermanagercmd.rb │ │ │ │ ├── package.rb │ │ │ │ ├── pagefile.rb │ │ │ │ ├── path.rb │ │ │ │ ├── printer.rb │ │ │ │ ├── printer_port.rb │ │ │ │ ├── reboot.rb │ │ │ │ ├── registry.rb │ │ │ │ ├── shortcut.rb │ │ │ │ ├── task.rb │ │ │ │ └── zipfile.rb │ │ │ ├── recipes │ │ │ │ ├── default.rb │ │ │ │ └── reboot_handler.rb │ │ │ └── resources │ │ │ │ ├── auto_run.rb │ │ │ │ ├── batch.rb │ │ │ │ ├── feature.rb │ │ │ │ ├── package.rb │ │ │ │ ├── pagefile.rb │ │ │ │ ├── path.rb │ │ │ │ ├── printer.rb │ │ │ │ ├── printer_port.rb │ │ │ │ ├── reboot.rb │ │ │ │ ├── registry.rb │ │ │ │ ├── shortcut.rb │ │ │ │ ├── task.rb │ │ │ │ └── zipfile.rb │ │ ├── xfs │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── metadata.json │ │ │ └── recipes │ │ │ │ └── default.rb │ │ ├── xml │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── attributes │ │ │ │ └── default.rb │ │ │ ├── metadata.json │ │ │ └── recipes │ │ │ │ ├── default.rb │ │ │ │ └── ruby.rb │ │ ├── yum-epel │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── attributes │ │ │ │ ├── epel-debuginfo.rb │ │ │ │ ├── epel-source.rb │ │ │ │ ├── epel-testing-debuginfo.rb │ │ │ │ ├── epel-testing-source.rb │ │ │ │ ├── epel-testing.rb │ │ │ │ └── epel.rb │ │ │ ├── metadata.json │ │ │ └── recipes │ │ │ │ └── default.rb │ │ └── yum │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── attributes │ │ │ └── main.rb │ │ │ ├── libraries │ │ │ └── matchers.rb │ │ │ ├── metadata.json │ │ │ ├── providers │ │ │ ├── globalconfig.rb │ │ │ └── repository.rb │ │ │ ├── recipes │ │ │ └── default.rb │ │ │ ├── resources │ │ │ ├── globalconfig.rb │ │ │ └── repository.rb │ │ │ └── templates │ │ │ └── default │ │ │ ├── main.erb │ │ │ └── repo.erb │ ├── core │ │ └── vdd │ │ │ ├── metadata.json │ │ │ ├── recipes │ │ │ ├── apache.rb │ │ │ ├── apc.rb │ │ │ ├── composer.rb │ │ │ ├── curl.rb │ │ │ ├── default.rb │ │ │ ├── drush.rb │ │ │ ├── git.rb │ │ │ ├── graphviz.rb │ │ │ ├── mailcatcher.rb │ │ │ ├── mc.rb │ │ │ ├── mysql.rb │ │ │ ├── patchutils.rb │ │ │ ├── php.rb │ │ │ ├── phpmyadmin.rb │ │ │ ├── rsync.rb │ │ │ ├── siege.rb │ │ │ ├── uploadprogress.rb │ │ │ ├── vdd_help.rb │ │ │ ├── vdd_sites.rb │ │ │ ├── vim.rb │ │ │ ├── webgrind.rb │ │ │ └── xdebug.rb │ │ │ └── templates │ │ │ ├── default │ │ │ ├── aliases.drushrc.php.erb │ │ │ ├── drushrc.php.erb │ │ │ ├── gitconfig.erb │ │ │ ├── localhost.conf.erb │ │ │ ├── mailcatcher.upstart.erb │ │ │ ├── phpmyadmin.deb.conf.erb │ │ │ ├── vdd_apache.conf.erb │ │ │ ├── vdd_apc.ini.erb │ │ │ ├── vdd_help.html.erb │ │ │ ├── vdd_my.cnf.erb │ │ │ ├── vdd_php.ini.erb │ │ │ ├── vdd_user.my.cnf.erb │ │ │ └── vdd_xdebug.ini.erb │ │ │ └── ubuntu │ │ │ ├── README.txt │ │ │ └── vdd_php.ini.erb │ └── custom │ │ └── vdd_example │ │ ├── metadata.json │ │ └── recipes │ │ └── default.rb ├── data_bags │ └── .gitignore ├── roles │ └── vdd.json ├── shell │ ├── final.sh │ ├── initial.sh │ └── vdd.txt └── solo.rb ├── config.json └── data └── .gitignore /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/Berksfile -------------------------------------------------------------------------------- /Berksfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/Berksfile.lock -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/README.txt -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/Vagrantfile -------------------------------------------------------------------------------- /chef/cookbooks/berks/Berksfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/Berksfile.lock -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/attributes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/attributes/mod_auth_cas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/attributes/mod_auth_cas.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/attributes/mod_auth_openid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/attributes/mod_auth_openid.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/attributes/mod_fastcgi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/attributes/mod_fastcgi.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/attributes/mod_pagespeed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/attributes/mod_pagespeed.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/attributes/mod_ssl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/attributes/mod_ssl.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/definitions/apache_conf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/definitions/apache_conf.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/definitions/apache_module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/definitions/apache_module.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/definitions/apache_site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/definitions/apache_site.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/definitions/web_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/definitions/web_app.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/files/default/apache2_module_conf_generate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/files/default/apache2_module_conf_generate.pl -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/files/default/tests/minitest/default_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/files/default/tests/minitest/default_test.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/files/default/tests/minitest/god_monitor_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/files/default/tests/minitest/god_monitor_test.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_apreq2_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_apreq2_test.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_auth_cas_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_auth_cas_test.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_auth_openid_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_auth_openid_test.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_cgi_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_cgi_test.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_dav_svn_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_dav_svn_test.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_fastcgi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_fastcgi.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_include_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_include_test.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_perl_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_perl_test.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_php5_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_php5_test.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_python_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_python_test.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_ssl_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/files/default/tests/minitest/mod_ssl_test.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/files/default/tests/minitest/support/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/files/default/tests/minitest/support/helpers.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/god_monitor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/god_monitor.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/iptables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/iptables.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/logrotate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/logrotate.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_actions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_actions.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_alias.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_alias.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_apreq2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_apreq2.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_auth_basic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_auth_basic.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_auth_cas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_auth_cas.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_auth_digest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_auth_digest.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_auth_openid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_auth_openid.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_authn_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_authn_file.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_authnz_ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_authnz_ldap.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_authz_default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_authz_default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_authz_groupfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_authz_groupfile.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_authz_host.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_authz_host.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_authz_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_authz_user.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_autoindex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_autoindex.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_cgi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_cgi.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_cloudflare.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_cloudflare.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_dav.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_dav.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_dav_fs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_dav_fs.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_dav_svn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_dav_svn.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_deflate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_deflate.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_dir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_dir.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_env.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_expires.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_expires.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_fastcgi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_fastcgi.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_fcgid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_fcgid.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_filter.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_headers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_headers.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_include.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_include.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_info.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_jk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_jk.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_ldap.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_log_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_log_config.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_logio.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_logio.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_mime.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_mime.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_negotiation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_negotiation.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_pagespeed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_pagespeed.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_perl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_perl.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_php5.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_php5.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_proxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_proxy.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_proxy_ajp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_proxy_ajp.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_proxy_balancer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_proxy_balancer.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_proxy_connect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_proxy_connect.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_proxy_http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_proxy_http.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_python.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_python.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_rewrite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_rewrite.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_setenvif.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_setenvif.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_ssl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_ssl.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_status.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_userdir.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_userdir.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_wsgi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_wsgi.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/recipes/mod_xsendfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/recipes/mod_xsendfile.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/a2dismod.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/a2dismod.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/a2dissite.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/a2dissite.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/a2enmod.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/a2enmod.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/a2ensite.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/a2ensite.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/apache2.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/apache2.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/apache2.god.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/apache2.god.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/charset.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/charset.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/default-site.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/default-site.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/etc-sysconfig-httpd.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/etc-sysconfig-httpd.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/README -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/alias.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/alias.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/auth_cas.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/auth_cas.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/auth_cas.load.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/auth_cas.load.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/authopenid.load.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/authopenid.load.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/autoindex.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/autoindex.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/deflate.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/deflate.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/dir.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/dir.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/fastcgi.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/fastcgi.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/fcgid.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/fcgid.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/include.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/include.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/include.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/include.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/info.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/info.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/mime.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/mime.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/negotiation.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/negotiation.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/pagespeed.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/pagespeed.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/php5.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/php5.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/proxy.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/proxy.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/setenvif.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/setenvif.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/ssl.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/ssl.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/mods/status.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/mods/status.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/port_apache.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/port_apache.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/ports.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/ports.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/security.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/security.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apache2/templates/default/web_app.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apache2/templates/default/web_app.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/attributes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/files/default/apt-proxy-v2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/files/default/apt-proxy-v2.conf -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/libraries/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/libraries/helpers.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/libraries/matchers.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/libraries/network.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/libraries/network.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/providers/preference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/providers/preference.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/providers/repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/providers/repository.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/recipes/cacher-client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/recipes/cacher-client.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/recipes/cacher-ng.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/recipes/cacher-ng.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/resources/preference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/resources/preference.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/resources/repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/resources/repository.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/templates/debian-6.0/acng.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/templates/debian-6.0/acng.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/templates/default/01proxy.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/templates/default/01proxy.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/templates/default/acng.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/templates/default/acng.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/apt/templates/ubuntu-10.04/acng.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/apt/templates/ubuntu-10.04/acng.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/attributes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/libraries/ec2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/libraries/ec2.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/libraries/elb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/libraries/elb.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/providers/ebs_raid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/providers/ebs_raid.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/providers/ebs_volume.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/providers/ebs_volume.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/providers/elastic_ip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/providers/elastic_ip.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/providers/elastic_lb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/providers/elastic_lb.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/providers/resource_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/providers/resource_tag.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/providers/s3_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/providers/s3_file.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/resources/ebs_raid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/resources/ebs_raid.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/resources/ebs_volume.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/resources/ebs_volume.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/resources/elastic_ip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/resources/elastic_ip.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/resources/elastic_lb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/resources/elastic_lb.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/resources/resource_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/resources/resource_tag.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/aws/resources/s3_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/aws/resources/s3_file.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/build-essential/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/build-essential/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/build-essential/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/build-essential/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/build-essential/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/build-essential/attributes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/build-essential/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/build-essential/libraries/matchers.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/build-essential/libraries/timing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/build-essential/libraries/timing.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/build-essential/libraries/xcode_command_line_tools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/build-essential/libraries/xcode_command_line_tools.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/build-essential/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/build-essential/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/build-essential/recipes/_debian.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/build-essential/recipes/_debian.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/build-essential/recipes/_fedora.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/build-essential/recipes/_fedora.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/build-essential/recipes/_freebsd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/build-essential/recipes/_freebsd.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/build-essential/recipes/_mac_os_x.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/build-essential/recipes/_mac_os_x.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/build-essential/recipes/_omnios.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/build-essential/recipes/_omnios.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/build-essential/recipes/_rhel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/build-essential/recipes/_rhel.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/build-essential/recipes/_smartos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/build-essential/recipes/_smartos.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/build-essential/recipes/_solaris2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/build-essential/recipes/_solaris2.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/build-essential/recipes/_suse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/build-essential/recipes/_suse.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/build-essential/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/build-essential/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/chef_handler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/chef_handler/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/chef_handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/chef_handler/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/chef_handler/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/chef_handler/attributes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/chef_handler/files/default/handlers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/chef_handler/files/default/handlers/README -------------------------------------------------------------------------------- /chef/cookbooks/berks/chef_handler/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/chef_handler/libraries/matchers.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/chef_handler/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/chef_handler/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/chef_handler/providers/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/chef_handler/providers/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/chef_handler/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/chef_handler/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/chef_handler/recipes/json_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/chef_handler/recipes/json_file.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/chef_handler/resources/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/chef_handler/resources/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/libraries/matchers.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/libraries/provider_database_mysql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/libraries/provider_database_mysql.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/libraries/provider_database_mysql_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/libraries/provider_database_mysql_user.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/libraries/provider_database_postgresql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/libraries/provider_database_postgresql.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/libraries/provider_database_postgresql_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/libraries/provider_database_postgresql_schema.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/libraries/provider_database_postgresql_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/libraries/provider_database_postgresql_user.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/libraries/provider_database_sql_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/libraries/provider_database_sql_server.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/libraries/provider_database_sql_server_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/libraries/provider_database_sql_server_user.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/libraries/resource_database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/libraries/resource_database.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/libraries/resource_database_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/libraries/resource_database_user.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/libraries/resource_mysql_database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/libraries/resource_mysql_database.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/libraries/resource_mysql_database_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/libraries/resource_mysql_database_user.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/libraries/resource_postgresql_database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/libraries/resource_postgresql_database.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/libraries/resource_postgresql_database_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/libraries/resource_postgresql_database_schema.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/libraries/resource_postgresql_database_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/libraries/resource_postgresql_database_user.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/libraries/resource_sql_server_database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/libraries/resource_sql_server_database.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/libraries/resource_sql_server_database_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/libraries/resource_sql_server_database_user.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/recipes/ebs_backup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/recipes/ebs_backup.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/recipes/ebs_volume.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/recipes/ebs_volume.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/recipes/master.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/recipes/master.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/recipes/mysql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/recipes/mysql.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/recipes/postgresql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/recipes/postgresql.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/recipes/snapshot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/recipes/snapshot.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/templates/default/app_grants.sql.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/templates/default/app_grants.sql.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/templates/default/aws_config.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/templates/default/aws_config.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/templates/default/chef-solo-database-snapshot.cron.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/templates/default/chef-solo-database-snapshot.cron.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/templates/default/chef-solo-database-snapshot.json.erb: -------------------------------------------------------------------------------- 1 | <%= require 'json'; JSON.pretty_generate(@output) %> 2 | -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/templates/default/chef-solo-database-snapshot.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/templates/default/chef-solo-database-snapshot.rb.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/templates/default/ebs-backup-cron.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/templates/default/ebs-backup-cron.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/templates/default/ebs-db-backup.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/templates/default/ebs-db-backup.sh.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/templates/default/ebs-db-restore.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/templates/default/ebs-db-restore.sh.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/database/templates/default/s3cfg.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/database/templates/default/s3cfg.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/attributes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/libraries/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/libraries/helper.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/providers/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/providers/app.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/providers/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/providers/config.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/providers/module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/providers/module.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/providers/pool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/providers/pool.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/providers/site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/providers/site.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/recipes/mod_application_initialization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/recipes/mod_application_initialization.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/recipes/mod_aspnet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/recipes/mod_aspnet.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/recipes/mod_auth_basic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/recipes/mod_auth_basic.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/recipes/mod_auth_windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/recipes/mod_auth_windows.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/recipes/mod_cgi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/recipes/mod_cgi.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/recipes/mod_compress_dynamic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/recipes/mod_compress_dynamic.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/recipes/mod_compress_static.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/recipes/mod_compress_static.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/recipes/mod_ftp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/recipes/mod_ftp.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/recipes/mod_iis6_metabase_compat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/recipes/mod_iis6_metabase_compat.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/recipes/mod_isapi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/recipes/mod_isapi.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/recipes/mod_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/recipes/mod_logging.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/recipes/mod_management.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/recipes/mod_management.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/recipes/mod_security.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/recipes/mod_security.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/recipes/mod_tracing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/recipes/mod_tracing.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/recipes/remove_default_site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/recipes/remove_default_site.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/resources/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/resources/app.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/resources/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/resources/config.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/resources/module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/resources/module.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/resources/pool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/resources/pool.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iis/resources/site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iis/resources/site.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iptables/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iptables/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/iptables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iptables/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/iptables/definitions/iptables_rule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iptables/definitions/iptables_rule.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iptables/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iptables/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/iptables/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iptables/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iptables/recipes/disabled.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iptables/recipes/disabled.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iptables/templates/default/all_established.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iptables/templates/default/all_established.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iptables/templates/default/all_icmp.erb: -------------------------------------------------------------------------------- 1 | # ICMP 2 | -A FWR -p icmp -j ACCEPT -------------------------------------------------------------------------------- /chef/cookbooks/berks/iptables/templates/default/iptables_load.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iptables/templates/default/iptables_load.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/iptables/templates/default/rebuild-iptables.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/iptables/templates/default/rebuild-iptables.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/logrotate/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/logrotate/Berksfile -------------------------------------------------------------------------------- /chef/cookbooks/berks/logrotate/Berksfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/logrotate/Berksfile.lock -------------------------------------------------------------------------------- /chef/cookbooks/berks/logrotate/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/logrotate/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/logrotate/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/logrotate/CONTRIBUTING.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/logrotate/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/logrotate/Gemfile -------------------------------------------------------------------------------- /chef/cookbooks/berks/logrotate/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/logrotate/Gemfile.lock -------------------------------------------------------------------------------- /chef/cookbooks/berks/logrotate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/logrotate/LICENSE -------------------------------------------------------------------------------- /chef/cookbooks/berks/logrotate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/logrotate/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/logrotate/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/logrotate/TESTING.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/logrotate/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/logrotate/attributes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/logrotate/definitions/logrotate_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/logrotate/definitions/logrotate_app.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/logrotate/libraries/logrotate_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/logrotate/libraries/logrotate_config.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/logrotate/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/logrotate/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/logrotate/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/logrotate/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/logrotate/recipes/global.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/logrotate/recipes/global.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/logrotate/templates/default/logrotate-global.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/logrotate/templates/default/logrotate-global.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/logrotate/templates/default/logrotate.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/logrotate/templates/default/logrotate.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql-chef_gem/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql-chef_gem/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql-chef_gem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql-chef_gem/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql-chef_gem/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql-chef_gem/libraries/matchers.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql-chef_gem/libraries/provider_mysql_chef_gem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql-chef_gem/libraries/provider_mysql_chef_gem.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql-chef_gem/libraries/resource_mysql_chef_gem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql-chef_gem/libraries/resource_mysql_chef_gem.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql-chef_gem/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql-chef_gem/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql-chef_gem/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql-chef_gem/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/attributes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/helpers.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/matchers.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/provider_mysql_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/provider_mysql_client.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/provider_mysql_client_debian.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/provider_mysql_client_debian.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/provider_mysql_client_fedora.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/provider_mysql_client_fedora.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/provider_mysql_client_freebsd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/provider_mysql_client_freebsd.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/provider_mysql_client_omnios.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/provider_mysql_client_omnios.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/provider_mysql_client_rhel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/provider_mysql_client_rhel.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/provider_mysql_client_smartos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/provider_mysql_client_smartos.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/provider_mysql_client_ubuntu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/provider_mysql_client_ubuntu.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/provider_mysql_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/provider_mysql_service.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/provider_mysql_service_debian.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/provider_mysql_service_debian.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/provider_mysql_service_fedora.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/provider_mysql_service_fedora.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/provider_mysql_service_freebsd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/provider_mysql_service_freebsd.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/provider_mysql_service_omnios.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/provider_mysql_service_omnios.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/provider_mysql_service_rhel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/provider_mysql_service_rhel.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/provider_mysql_service_smartos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/provider_mysql_service_smartos.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/provider_mysql_service_ubuntu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/provider_mysql_service_ubuntu.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/resource_mysql_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/resource_mysql_client.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/libraries/resource_mysql_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/libraries/resource_mysql_service.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/recipes/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/recipes/client.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/recipes/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/recipes/server.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/recipes/server_deprecated.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/recipes/server_deprecated.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/templates/default/5.0/my.cnf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/templates/default/5.0/my.cnf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/templates/default/5.1/my.cnf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/templates/default/5.1/my.cnf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/templates/default/5.5/my.cnf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/templates/default/5.5/my.cnf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/templates/default/5.6/my.cnf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/templates/default/5.6/my.cnf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/templates/default/apparmor/usr.sbin.mysqld.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/templates/default/apparmor/usr.sbin.mysqld.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/templates/default/debian/debian.cnf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/templates/default/debian/debian.cnf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/templates/default/debian/mysql-server.seed.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/templates/default/debian/mysql-server.seed.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/templates/default/deprecated/my.cnf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/templates/default/deprecated/my.cnf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/templates/default/grants/grants.sql.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/templates/default/grants/grants.sql.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/templates/default/omnios/mysql.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/templates/default/omnios/mysql.xml.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/templates/default/omnios/svc.method.mysqld.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/templates/default/omnios/svc.method.mysqld.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/templates/default/smartos/mysql.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/templates/default/smartos/mysql.xml.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/mysql/templates/default/smartos/svc.method.mysqld.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/mysql/templates/default/smartos/svc.method.mysqld.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/openssl/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/openssl/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/openssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/openssl/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/openssl/libraries/secure_password.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/openssl/libraries/secure_password.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/openssl/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/openssl/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/openssl/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/openssl/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/pacman/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/pacman/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/pacman/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/pacman/CONTRIBUTING -------------------------------------------------------------------------------- /chef/cookbooks/berks/pacman/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/pacman/Gemfile -------------------------------------------------------------------------------- /chef/cookbooks/berks/pacman/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/pacman/Gemfile.lock -------------------------------------------------------------------------------- /chef/cookbooks/berks/pacman/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/pacman/LICENSE -------------------------------------------------------------------------------- /chef/cookbooks/berks/pacman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/pacman/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/pacman/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/pacman/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/pacman/providers/aur.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/pacman/providers/aur.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/pacman/providers/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/pacman/providers/group.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/pacman/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/pacman/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/pacman/resources/aur.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/pacman/resources/aur.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/pacman/resources/group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/pacman/resources/group.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/pacman/spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/attributes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/files/windows/go-pear.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/files/windows/go-pear.phar -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/libraries/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/libraries/helpers.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/providers/pear.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/providers/pear.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/providers/pear_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/providers/pear_channel.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/recipes/ini.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/recipes/ini.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/recipes/module_apc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/recipes/module_apc.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/recipes/module_curl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/recipes/module_curl.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/recipes/module_fpdf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/recipes/module_fpdf.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/recipes/module_gd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/recipes/module_gd.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/recipes/module_ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/recipes/module_ldap.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/recipes/module_memcache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/recipes/module_memcache.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/recipes/module_mysql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/recipes/module_mysql.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/recipes/module_pgsql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/recipes/module_pgsql.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/recipes/module_sqlite3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/recipes/module_sqlite3.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/recipes/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/recipes/package.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/recipes/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/recipes/source.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/resources/pear.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/resources/pear.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/resources/pear_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/resources/pear_channel.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/templates/centos/php.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/templates/centos/php.ini.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/templates/debian/php.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/templates/debian/php.ini.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/templates/default/extension.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/templates/default/extension.ini.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/templates/default/php.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/templates/default/php.ini.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/templates/redhat/php.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/templates/redhat/php.ini.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/templates/ubuntu/php.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/templates/ubuntu/php.ini.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/templates/windows/pear-options.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/templates/windows/pear-options.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/php/templates/windows/php.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/php/templates/windows/php.ini.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/Berksfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/Berksfile -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/Berksfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/Berksfile.lock -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/CONTRIBUTING.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/Gemfile -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/Gemfile.lock -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/LICENSE -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/TESTING.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/attributes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/files/default/tests/minitest/apt_pgdg_postgresql_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/files/default/tests/minitest/apt_pgdg_postgresql_test.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/files/default/tests/minitest/default_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/files/default/tests/minitest/default_test.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/files/default/tests/minitest/ruby_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/files/default/tests/minitest/ruby_test.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/files/default/tests/minitest/server_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/files/default/tests/minitest/server_test.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/files/default/tests/minitest/support/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/files/default/tests/minitest/support/helpers.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/libraries/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/libraries/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/recipes/apt_pgdg_postgresql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/recipes/apt_pgdg_postgresql.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/recipes/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/recipes/client.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/recipes/config_initdb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/recipes/config_initdb.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/recipes/config_pgtune.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/recipes/config_pgtune.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/recipes/contrib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/recipes/contrib.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/recipes/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/recipes/ruby.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/recipes/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/recipes/server.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/recipes/server_debian.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/recipes/server_debian.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/recipes/server_redhat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/recipes/server_redhat.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/recipes/yum_pgdg_postgresql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/recipes/yum_pgdg_postgresql.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/templates/default/pg_hba.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/templates/default/pg_hba.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/templates/default/pgsql.sysconfig.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/templates/default/pgsql.sysconfig.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/postgresql/templates/default/postgresql.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/postgresql/templates/default/postgresql.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/attributes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/files/default/handlers/windows_reboot_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/files/default/handlers/windows_reboot_handler.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/libraries/feature_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/libraries/feature_base.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/libraries/matchers.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/libraries/powershell_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/libraries/powershell_helper.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/libraries/powershell_out.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/libraries/powershell_out.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/libraries/registry_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/libraries/registry_helper.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/libraries/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/libraries/version.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/libraries/windows_architecture_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/libraries/windows_architecture_helper.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/libraries/windows_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/libraries/windows_helper.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/libraries/windows_privileged.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/libraries/windows_privileged.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/providers/auto_run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/providers/auto_run.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/providers/batch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/providers/batch.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/providers/feature_dism.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/providers/feature_dism.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/providers/feature_powershell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/providers/feature_powershell.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/providers/feature_servermanagercmd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/providers/feature_servermanagercmd.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/providers/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/providers/package.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/providers/pagefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/providers/pagefile.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/providers/path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/providers/path.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/providers/printer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/providers/printer.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/providers/printer_port.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/providers/printer_port.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/providers/reboot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/providers/reboot.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/providers/registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/providers/registry.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/providers/shortcut.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/providers/shortcut.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/providers/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/providers/task.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/providers/zipfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/providers/zipfile.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/recipes/reboot_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/recipes/reboot_handler.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/resources/auto_run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/resources/auto_run.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/resources/batch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/resources/batch.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/resources/feature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/resources/feature.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/resources/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/resources/package.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/resources/pagefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/resources/pagefile.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/resources/path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/resources/path.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/resources/printer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/resources/printer.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/resources/printer_port.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/resources/printer_port.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/resources/reboot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/resources/reboot.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/resources/registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/resources/registry.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/resources/shortcut.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/resources/shortcut.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/resources/task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/resources/task.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/windows/resources/zipfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/windows/resources/zipfile.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/xfs/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## v1.1.0: 2 | 3 | * [COOK-2076] - Add Amazon Linux support 4 | -------------------------------------------------------------------------------- /chef/cookbooks/berks/xfs/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/xfs/CONTRIBUTING -------------------------------------------------------------------------------- /chef/cookbooks/berks/xfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/xfs/LICENSE -------------------------------------------------------------------------------- /chef/cookbooks/berks/xfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/xfs/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/xfs/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/xfs/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/xfs/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/xfs/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/xml/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/xml/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/xml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/xml/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/xml/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/xml/attributes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/xml/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/xml/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/xml/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/xml/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/xml/recipes/ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/xml/recipes/ruby.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum-epel/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum-epel/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum-epel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum-epel/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum-epel/attributes/epel-debuginfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum-epel/attributes/epel-debuginfo.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum-epel/attributes/epel-source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum-epel/attributes/epel-source.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum-epel/attributes/epel-testing-debuginfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum-epel/attributes/epel-testing-debuginfo.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum-epel/attributes/epel-testing-source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum-epel/attributes/epel-testing-source.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum-epel/attributes/epel-testing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum-epel/attributes/epel-testing.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum-epel/attributes/epel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum-epel/attributes/epel.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum-epel/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum-epel/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum-epel/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum-epel/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum/CHANGELOG.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum/README.md -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum/attributes/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum/attributes/main.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum/libraries/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum/libraries/matchers.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum/providers/globalconfig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum/providers/globalconfig.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum/providers/repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum/providers/repository.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum/recipes/default.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum/resources/globalconfig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum/resources/globalconfig.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum/resources/repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum/resources/repository.rb -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum/templates/default/main.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum/templates/default/main.erb -------------------------------------------------------------------------------- /chef/cookbooks/berks/yum/templates/default/repo.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/berks/yum/templates/default/repo.erb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/apache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/recipes/apache.rb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/apc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/recipes/apc.rb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/composer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/recipes/composer.rb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/curl.rb: -------------------------------------------------------------------------------- 1 | package "curl" do 2 | action :install 3 | end 4 | -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/default.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/drush.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/recipes/drush.rb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/recipes/git.rb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/graphviz.rb: -------------------------------------------------------------------------------- 1 | package "graphviz" do 2 | action :install 3 | end 4 | -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/mailcatcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/recipes/mailcatcher.rb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/mc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/recipes/mc.rb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/mysql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/recipes/mysql.rb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/patchutils.rb: -------------------------------------------------------------------------------- 1 | package "patchutils" do 2 | action :install 3 | end 4 | -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/php.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/recipes/php.rb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/phpmyadmin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/recipes/phpmyadmin.rb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/rsync.rb: -------------------------------------------------------------------------------- 1 | package "rsync" do 2 | action :install 3 | end 4 | -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/siege.rb: -------------------------------------------------------------------------------- 1 | package "siege" do 2 | action :install 3 | end -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/uploadprogress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/recipes/uploadprogress.rb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/vdd_help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/recipes/vdd_help.rb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/vdd_sites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/recipes/vdd_sites.rb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/vim.rb: -------------------------------------------------------------------------------- 1 | package "vim" do 2 | action :install 3 | end -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/webgrind.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/recipes/webgrind.rb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/recipes/xdebug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/recipes/xdebug.rb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/templates/default/aliases.drushrc.php.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/templates/default/aliases.drushrc.php.erb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/templates/default/drushrc.php.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/templates/default/drushrc.php.erb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/templates/default/gitconfig.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/templates/default/gitconfig.erb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/templates/default/localhost.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/templates/default/localhost.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/templates/default/mailcatcher.upstart.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/templates/default/mailcatcher.upstart.erb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/templates/default/phpmyadmin.deb.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/templates/default/phpmyadmin.deb.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/templates/default/vdd_apache.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/templates/default/vdd_apache.conf.erb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/templates/default/vdd_apc.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/templates/default/vdd_apc.ini.erb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/templates/default/vdd_help.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/templates/default/vdd_help.html.erb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/templates/default/vdd_my.cnf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/templates/default/vdd_my.cnf.erb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/templates/default/vdd_php.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/templates/default/vdd_php.ini.erb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/templates/default/vdd_user.my.cnf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/templates/default/vdd_user.my.cnf.erb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/templates/default/vdd_xdebug.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/templates/default/vdd_xdebug.ini.erb -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/templates/ubuntu/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/templates/ubuntu/README.txt -------------------------------------------------------------------------------- /chef/cookbooks/core/vdd/templates/ubuntu/vdd_php.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/core/vdd/templates/ubuntu/vdd_php.ini.erb -------------------------------------------------------------------------------- /chef/cookbooks/custom/vdd_example/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/cookbooks/custom/vdd_example/metadata.json -------------------------------------------------------------------------------- /chef/cookbooks/custom/vdd_example/recipes/default.rb: -------------------------------------------------------------------------------- 1 | log "VDD Example: Hello, World!" -------------------------------------------------------------------------------- /chef/data_bags/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chef/roles/vdd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/roles/vdd.json -------------------------------------------------------------------------------- /chef/shell/final.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/shell/final.sh -------------------------------------------------------------------------------- /chef/shell/initial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/shell/initial.sh -------------------------------------------------------------------------------- /chef/shell/vdd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/shell/vdd.txt -------------------------------------------------------------------------------- /chef/solo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/chef/solo.rb -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drupalprojects/vdd/HEAD/config.json -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | --------------------------------------------------------------------------------