Skip to content

Instantly share code, notes, and snippets.

@adamhjk
Created April 15, 2010 21:16
Show Gist options
  • Save adamhjk/367670 to your computer and use it in GitHub Desktop.
Save adamhjk/367670 to your computer and use it in GitHub Desktop.
[adam@latte]% ./knife cookbook site vendor wordpress 0.5.0 -d ~/src/sandbox/opscode/chef/chef/bin
INFO: Downloading wordpress from the cookbooks site at version 0.5.0
INFO: Cookbook saved: /Users/adam/src/sandbox/opscode/chef-repo/cookbooks/wordpress.tar.gz
INFO: Checking out the master branch.
INFO: Checking the status of the vendor branch.
INFO: Creating vendor branch.
INFO: Removing pre-existing version.
INFO: Uncompressing wordpress version 0.5.0.
INFO: Adding changes.
INFO: Committing changes.
INFO: Creating tag chef-vendor-wordpress-0.5.0.
INFO: Checking out the master branch.
INFO: Merging changes from wordpress version 0.5.0.
Updating a78d66f..87a193e
Fast forward
cookbooks/wordpress/README.rdoc | 72 ++++++++
cookbooks/wordpress/attributes/wordpress.rb | 34 ++++
cookbooks/wordpress/metadata.json | 187 ++++++++++++++++++++
cookbooks/wordpress/metadata.rb | 65 +++++++
cookbooks/wordpress/recipes/default.rb | 114 ++++++++++++
.../wordpress/templates/default/grants.sql.erb | 5 +
.../wordpress/templates/default/wordpress.conf.erb | 26 +++
.../wordpress/templates/default/wp-config.php.erb | 76 ++++++++
8 files changed, 579 insertions(+), 0 deletions(-)
create mode 100644 cookbooks/wordpress/README.rdoc
create mode 100644 cookbooks/wordpress/attributes/wordpress.rb
create mode 100644 cookbooks/wordpress/metadata.json
create mode 100644 cookbooks/wordpress/metadata.rb
create mode 100644 cookbooks/wordpress/recipes/default.rb
create mode 100644 cookbooks/wordpress/templates/default/grants.sql.erb
create mode 100644 cookbooks/wordpress/templates/default/wordpress.conf.erb
create mode 100644 cookbooks/wordpress/templates/default/wp-config.php.erb
INFO: Cookbook wordpress version 0.5.0 successfully vendored!
INFO: Downloading mysql from the cookbooks site at version 0.15.0
INFO: Cookbook saved: /Users/adam/src/sandbox/opscode/chef-repo/cookbooks/mysql.tar.gz
INFO: Checking out the master branch.
INFO: Checking the status of the vendor branch.
INFO: Creating vendor branch.
INFO: Removing pre-existing version.
INFO: Uncompressing mysql version 0.15.0.
INFO: Adding changes.
INFO: Committing changes.
INFO: Creating tag chef-vendor-mysql-0.15.0.
INFO: Checking out the master branch.
INFO: Merging changes from mysql version 0.15.0.
Updating 87a193e..6c19d18
Fast forward
cookbooks/mysql/README.rdoc | 95 +++++++++
cookbooks/mysql/attributes/server.rb | 42 ++++
cookbooks/mysql/libraries/database.rb | 15 ++
cookbooks/mysql/metadata.json | 214 ++++++++++++++++++++
cookbooks/mysql/metadata.rb | 73 +++++++
cookbooks/mysql/providers/database.rb | 13 ++
cookbooks/mysql/recipes/client.rb | 50 +++++
cookbooks/mysql/recipes/default.rb | 20 ++
cookbooks/mysql/recipes/server.rb | 82 ++++++++
cookbooks/mysql/recipes/server_ec2.rb | 49 +++++
cookbooks/mysql/resources/database.rb | 5 +
cookbooks/mysql/templates/centos/my.cnf.erb | 12 +
cookbooks/mysql/templates/default/debian.cnf.erb | 11 +
cookbooks/mysql/templates/default/grants.sql.erb | 12 +
cookbooks/mysql/templates/default/my.cnf.erb | 163 +++++++++++++++
.../mysql/templates/default/mysql-server.seed.erb | 10 +
cookbooks/mysql/templates/default/port_mysql.erb | 3 +
cookbooks/mysql/templates/redhat/my.cnf.erb | 12 +
cookbooks/mysql/templates/ubuntu-8.04/my.cnf.erb | 156 ++++++++++++++
cookbooks/mysql/templates/ubuntu-9.10/my.cnf.erb | 158 +++++++++++++++
20 files changed, 1195 insertions(+), 0 deletions(-)
create mode 100644 cookbooks/mysql/README.rdoc
create mode 100644 cookbooks/mysql/attributes/server.rb
create mode 100644 cookbooks/mysql/libraries/database.rb
create mode 100644 cookbooks/mysql/metadata.json
create mode 100644 cookbooks/mysql/metadata.rb
create mode 100644 cookbooks/mysql/providers/database.rb
create mode 100644 cookbooks/mysql/recipes/client.rb
create mode 100644 cookbooks/mysql/recipes/default.rb
create mode 100644 cookbooks/mysql/recipes/server.rb
create mode 100644 cookbooks/mysql/recipes/server_ec2.rb
create mode 100644 cookbooks/mysql/resources/database.rb
create mode 100644 cookbooks/mysql/templates/centos/my.cnf.erb
create mode 100644 cookbooks/mysql/templates/default/debian.cnf.erb
create mode 100644 cookbooks/mysql/templates/default/grants.sql.erb
create mode 100644 cookbooks/mysql/templates/default/my.cnf.erb
create mode 100644 cookbooks/mysql/templates/default/mysql-server.seed.erb
create mode 100644 cookbooks/mysql/templates/default/port_mysql.erb
create mode 100644 cookbooks/mysql/templates/redhat/my.cnf.erb
create mode 100644 cookbooks/mysql/templates/ubuntu-8.04/my.cnf.erb
create mode 100644 cookbooks/mysql/templates/ubuntu-9.10/my.cnf.erb
INFO: Cookbook mysql version 0.15.0 successfully vendored!
INFO: Downloading openssl from the cookbooks site at version 0.1.0
INFO: Cookbook saved: /Users/adam/src/sandbox/opscode/chef-repo/cookbooks/openssl.tar.gz
INFO: Checking out the master branch.
INFO: Checking the status of the vendor branch.
INFO: Creating vendor branch.
INFO: Removing pre-existing version.
INFO: Uncompressing openssl version 0.1.0.
INFO: Adding changes.
INFO: Committing changes.
INFO: Creating tag chef-vendor-openssl-0.1.0.
INFO: Checking out the master branch.
INFO: Merging changes from openssl version 0.1.0.
Updating 6c19d18..b6bfbb3
Fast forward
cookbooks/openssl/README.rdoc | 33 +++++++++++++++++++++
cookbooks/openssl/libraries/secure_password.rb | 37 ++++++++++++++++++++++++
cookbooks/openssl/metadata.json | 29 ++++++++++++++++++
cookbooks/openssl/metadata.rb | 6 ++++
cookbooks/openssl/recipes/default.rb | 19 ++++++++++++
5 files changed, 124 insertions(+), 0 deletions(-)
create mode 100644 cookbooks/openssl/README.rdoc
create mode 100644 cookbooks/openssl/libraries/secure_password.rb
create mode 100644 cookbooks/openssl/metadata.json
create mode 100644 cookbooks/openssl/metadata.rb
create mode 100644 cookbooks/openssl/recipes/default.rb
INFO: Cookbook openssl version 0.1.0 successfully vendored!
INFO: Downloading php from the cookbooks site at version 0.7.0
INFO: Cookbook saved: /Users/adam/src/sandbox/opscode/chef-repo/cookbooks/php.tar.gz
INFO: Checking out the master branch.
INFO: Checking the status of the vendor branch.
INFO: Creating vendor branch.
INFO: Removing pre-existing version.
INFO: Uncompressing php version 0.7.0.
INFO: Adding changes.
INFO: Committing changes.
INFO: Creating tag chef-vendor-php-0.7.0.
INFO: Checking out the master branch.
INFO: Merging changes from php version 0.7.0.
Updating b6bfbb3..0f01d61
Fast forward
cookbooks/php/definitions/pear.rb | 43 +
cookbooks/php/definitions/pear_channel.rb | 31 +
cookbooks/php/definitions/pear_module.rb | 31 +
cookbooks/php/definitions/php_app.rb | 42 +
cookbooks/php/files/default/apache2-php5.ini | 1251 ++++++++++++++++++++++++++
cookbooks/php/metadata.json | 101 +++
cookbooks/php/metadata.rb | 24 +
cookbooks/php/recipes/default.rb | 19 +
cookbooks/php/recipes/module_apc.rb | 23 +
cookbooks/php/recipes/module_curl.rb | 23 +
cookbooks/php/recipes/module_fileinfo.rb | 23 +
cookbooks/php/recipes/module_fpdf.rb | 23 +
cookbooks/php/recipes/module_gd.rb | 23 +
cookbooks/php/recipes/module_ldap.rb | 23 +
cookbooks/php/recipes/module_memcache.rb | 23 +
cookbooks/php/recipes/module_mysql.rb | 23 +
cookbooks/php/recipes/module_pgsql.rb | 23 +
cookbooks/php/recipes/module_sqlite3.rb | 23 +
cookbooks/php/recipes/pear.rb | 23 +
cookbooks/php/recipes/php4.rb | 25 +
cookbooks/php/recipes/php5-cgi.rb | 30 +
cookbooks/php/recipes/php5.rb | 41 +
cookbooks/php/templates/default/php.conf.erb | 63 ++
23 files changed, 1954 insertions(+), 0 deletions(-)
create mode 100644 cookbooks/php/definitions/pear.rb
create mode 100644 cookbooks/php/definitions/pear_channel.rb
create mode 100644 cookbooks/php/definitions/pear_module.rb
create mode 100644 cookbooks/php/definitions/php_app.rb
create mode 100644 cookbooks/php/files/default/apache2-php5.ini
create mode 100644 cookbooks/php/metadata.json
create mode 100644 cookbooks/php/metadata.rb
create mode 100644 cookbooks/php/recipes/default.rb
create mode 100644 cookbooks/php/recipes/module_apc.rb
create mode 100644 cookbooks/php/recipes/module_curl.rb
create mode 100644 cookbooks/php/recipes/module_fileinfo.rb
create mode 100644 cookbooks/php/recipes/module_fpdf.rb
create mode 100644 cookbooks/php/recipes/module_gd.rb
create mode 100644 cookbooks/php/recipes/module_ldap.rb
create mode 100644 cookbooks/php/recipes/module_memcache.rb
create mode 100644 cookbooks/php/recipes/module_mysql.rb
create mode 100644 cookbooks/php/recipes/module_pgsql.rb
create mode 100644 cookbooks/php/recipes/module_sqlite3.rb
create mode 100644 cookbooks/php/recipes/pear.rb
create mode 100644 cookbooks/php/recipes/php4.rb
create mode 100644 cookbooks/php/recipes/php5-cgi.rb
create mode 100644 cookbooks/php/recipes/php5.rb
create mode 100644 cookbooks/php/templates/default/php.conf.erb
INFO: Cookbook php version 0.7.0 successfully vendored!
INFO: Downloading apache2 from the cookbooks site at version 0.10.1
INFO: Cookbook saved: /Users/adam/src/sandbox/opscode/chef-repo/cookbooks/apache2.tar.gz
INFO: Checking out the master branch.
INFO: Checking the status of the vendor branch.
INFO: Creating vendor branch.
INFO: Removing pre-existing version.
INFO: Uncompressing apache2 version 0.10.1.
INFO: Adding changes.
INFO: Committing changes.
INFO: Creating tag chef-vendor-apache2-0.10.1.
INFO: Checking out the master branch.
INFO: Merging changes from apache2 version 0.10.1.
Updating 0f01d61..6039189
Fast forward
cookbooks/apache2/README.rdoc | 78 +++
cookbooks/apache2/attributes/apache.rb | 77 +++
cookbooks/apache2/definitions/apache_conf.rb | 25 +
cookbooks/apache2/definitions/apache_module.rb | 43 ++
cookbooks/apache2/definitions/apache_site.rb | 40 ++
cookbooks/apache2/definitions/web_app.rb | 49 ++
.../files/default/apache2_module_conf_generate.pl | 41 ++
cookbooks/apache2/metadata.json | 497 ++++++++++++++++++++
cookbooks/apache2/metadata.rb | 197 ++++++++
cookbooks/apache2/recipes/default.rb | 191 ++++++++
cookbooks/apache2/recipes/god_monitor.rb | 33 ++
cookbooks/apache2/recipes/mod_alias.rb | 22 +
cookbooks/apache2/recipes/mod_auth_basic.rb | 20 +
cookbooks/apache2/recipes/mod_auth_digest.rb | 20 +
cookbooks/apache2/recipes/mod_auth_openid.rb | 59 +++
cookbooks/apache2/recipes/mod_authn_file.rb | 20 +
cookbooks/apache2/recipes/mod_authnz_ldap.rb | 20 +
cookbooks/apache2/recipes/mod_authz_default.rb | 20 +
cookbooks/apache2/recipes/mod_authz_groupfile.rb | 20 +
cookbooks/apache2/recipes/mod_authz_host.rb | 20 +
cookbooks/apache2/recipes/mod_authz_user.rb | 20 +
cookbooks/apache2/recipes/mod_autoindex.rb | 22 +
cookbooks/apache2/recipes/mod_cgi.rb | 20 +
cookbooks/apache2/recipes/mod_dav.rb | 20 +
cookbooks/apache2/recipes/mod_dav_svn.rb | 22 +
cookbooks/apache2/recipes/mod_deflate.rb | 22 +
cookbooks/apache2/recipes/mod_dir.rb | 22 +
cookbooks/apache2/recipes/mod_env.rb | 20 +
cookbooks/apache2/recipes/mod_expires.rb | 20 +
cookbooks/apache2/recipes/mod_fcgid.rb | 46 ++
cookbooks/apache2/recipes/mod_headers.rb | 20 +
cookbooks/apache2/recipes/mod_ldap.rb | 20 +
cookbooks/apache2/recipes/mod_log_config.rb | 24 +
cookbooks/apache2/recipes/mod_mime.rb | 22 +
cookbooks/apache2/recipes/mod_negotiation.rb | 22 +
cookbooks/apache2/recipes/mod_php5.rb | 32 ++
cookbooks/apache2/recipes/mod_proxy.rb | 22 +
cookbooks/apache2/recipes/mod_proxy_ajp.rb | 20 +
cookbooks/apache2/recipes/mod_proxy_balancer.rb | 20 +
cookbooks/apache2/recipes/mod_proxy_connect.rb | 20 +
cookbooks/apache2/recipes/mod_proxy_http.rb | 20 +
cookbooks/apache2/recipes/mod_python.rb | 22 +
cookbooks/apache2/recipes/mod_rewrite.rb | 20 +
cookbooks/apache2/recipes/mod_setenvif.rb | 22 +
cookbooks/apache2/recipes/mod_ssl.rb | 42 ++
cookbooks/apache2/recipes/mod_status.rb | 22 +
cookbooks/apache2/templates/default/a2dismod.erb | 22 +
cookbooks/apache2/templates/default/a2dissite.erb | 29 ++
cookbooks/apache2/templates/default/a2enmod.erb | 37 ++
cookbooks/apache2/templates/default/a2ensite.erb | 38 ++
.../apache2/templates/default/apache2.conf.erb | 230 +++++++++
.../apache2/templates/default/apache2.god.erb | 19 +
cookbooks/apache2/templates/default/charset.erb | 6 +
.../apache2/templates/default/default-site.erb | 57 +++
.../templates/default/mod_auth_openid.rb.erb | 12 +
cookbooks/apache2/templates/default/mods/README | 2 +
.../apache2/templates/default/mods/alias.conf.erb | 24 +
.../templates/default/mods/authopenid.load.erb | 1 +
.../templates/default/mods/autoindex.conf.erb | 101 ++++
.../templates/default/mods/deflate.conf.erb | 16 +
.../apache2/templates/default/mods/dir.conf.erb | 5 +
.../apache2/templates/default/mods/fcgid.conf.erb | 10 +
.../apache2/templates/default/mods/mime.conf.erb | 191 ++++++++
.../templates/default/mods/negotiation.conf.erb | 18 +
.../apache2/templates/default/mods/proxy.conf.erb | 19 +
.../templates/default/mods/setenvif.conf.erb | 28 ++
.../apache2/templates/default/mods/ssl.conf.erb | 72 +++
.../apache2/templates/default/mods/status.conf.erb | 16 +
.../apache2/templates/default/port_apache.erb | 2 +
cookbooks/apache2/templates/default/ports.conf.erb | 6 +
cookbooks/apache2/templates/default/security.erb | 50 ++
.../apache2/templates/default/web_app.conf.erb | 43 ++
72 files changed, 3150 insertions(+), 0 deletions(-)
create mode 100644 cookbooks/apache2/README.rdoc
create mode 100644 cookbooks/apache2/attributes/apache.rb
create mode 100644 cookbooks/apache2/definitions/apache_conf.rb
create mode 100644 cookbooks/apache2/definitions/apache_module.rb
create mode 100644 cookbooks/apache2/definitions/apache_site.rb
create mode 100644 cookbooks/apache2/definitions/web_app.rb
create mode 100644 cookbooks/apache2/files/default/apache2_module_conf_generate.pl
create mode 100644 cookbooks/apache2/metadata.json
create mode 100644 cookbooks/apache2/metadata.rb
create mode 100644 cookbooks/apache2/recipes/default.rb
create mode 100644 cookbooks/apache2/recipes/god_monitor.rb
create mode 100644 cookbooks/apache2/recipes/mod_alias.rb
create mode 100644 cookbooks/apache2/recipes/mod_auth_basic.rb
create mode 100644 cookbooks/apache2/recipes/mod_auth_digest.rb
create mode 100644 cookbooks/apache2/recipes/mod_auth_openid.rb
create mode 100644 cookbooks/apache2/recipes/mod_authn_file.rb
create mode 100644 cookbooks/apache2/recipes/mod_authnz_ldap.rb
create mode 100644 cookbooks/apache2/recipes/mod_authz_default.rb
create mode 100644 cookbooks/apache2/recipes/mod_authz_groupfile.rb
create mode 100644 cookbooks/apache2/recipes/mod_authz_host.rb
create mode 100644 cookbooks/apache2/recipes/mod_authz_user.rb
create mode 100644 cookbooks/apache2/recipes/mod_autoindex.rb
create mode 100644 cookbooks/apache2/recipes/mod_cgi.rb
create mode 100644 cookbooks/apache2/recipes/mod_dav.rb
create mode 100644 cookbooks/apache2/recipes/mod_dav_svn.rb
create mode 100644 cookbooks/apache2/recipes/mod_deflate.rb
create mode 100644 cookbooks/apache2/recipes/mod_dir.rb
create mode 100644 cookbooks/apache2/recipes/mod_env.rb
create mode 100644 cookbooks/apache2/recipes/mod_expires.rb
create mode 100644 cookbooks/apache2/recipes/mod_fcgid.rb
create mode 100644 cookbooks/apache2/recipes/mod_headers.rb
create mode 100644 cookbooks/apache2/recipes/mod_ldap.rb
create mode 100644 cookbooks/apache2/recipes/mod_log_config.rb
create mode 100644 cookbooks/apache2/recipes/mod_mime.rb
create mode 100644 cookbooks/apache2/recipes/mod_negotiation.rb
create mode 100644 cookbooks/apache2/recipes/mod_php5.rb
create mode 100644 cookbooks/apache2/recipes/mod_proxy.rb
create mode 100644 cookbooks/apache2/recipes/mod_proxy_ajp.rb
create mode 100644 cookbooks/apache2/recipes/mod_proxy_balancer.rb
create mode 100644 cookbooks/apache2/recipes/mod_proxy_connect.rb
create mode 100644 cookbooks/apache2/recipes/mod_proxy_http.rb
create mode 100644 cookbooks/apache2/recipes/mod_python.rb
create mode 100644 cookbooks/apache2/recipes/mod_rewrite.rb
create mode 100644 cookbooks/apache2/recipes/mod_setenvif.rb
create mode 100644 cookbooks/apache2/recipes/mod_ssl.rb
create mode 100644 cookbooks/apache2/recipes/mod_status.rb
create mode 100644 cookbooks/apache2/templates/default/a2dismod.erb
create mode 100644 cookbooks/apache2/templates/default/a2dissite.erb
create mode 100644 cookbooks/apache2/templates/default/a2enmod.erb
create mode 100644 cookbooks/apache2/templates/default/a2ensite.erb
create mode 100644 cookbooks/apache2/templates/default/apache2.conf.erb
create mode 100644 cookbooks/apache2/templates/default/apache2.god.erb
create mode 100644 cookbooks/apache2/templates/default/charset.erb
create mode 100644 cookbooks/apache2/templates/default/default-site.erb
create mode 100644 cookbooks/apache2/templates/default/mod_auth_openid.rb.erb
create mode 100644 cookbooks/apache2/templates/default/mods/README
create mode 100644 cookbooks/apache2/templates/default/mods/alias.conf.erb
create mode 100644 cookbooks/apache2/templates/default/mods/authopenid.load.erb
create mode 100644 cookbooks/apache2/templates/default/mods/autoindex.conf.erb
create mode 100644 cookbooks/apache2/templates/default/mods/deflate.conf.erb
create mode 100644 cookbooks/apache2/templates/default/mods/dir.conf.erb
create mode 100644 cookbooks/apache2/templates/default/mods/fcgid.conf.erb
create mode 100644 cookbooks/apache2/templates/default/mods/mime.conf.erb
create mode 100644 cookbooks/apache2/templates/default/mods/negotiation.conf.erb
create mode 100644 cookbooks/apache2/templates/default/mods/proxy.conf.erb
create mode 100644 cookbooks/apache2/templates/default/mods/setenvif.conf.erb
create mode 100644 cookbooks/apache2/templates/default/mods/ssl.conf.erb
create mode 100644 cookbooks/apache2/templates/default/mods/status.conf.erb
create mode 100644 cookbooks/apache2/templates/default/port_apache.erb
create mode 100644 cookbooks/apache2/templates/default/ports.conf.erb
create mode 100644 cookbooks/apache2/templates/default/security.erb
create mode 100644 cookbooks/apache2/templates/default/web_app.conf.erb
INFO: Cookbook apache2 version 0.10.1 successfully vendored!
INFO: Downloading openssl from the cookbooks site at version 0.1.0
INFO: Cookbook saved: /Users/adam/src/sandbox/opscode/chef-repo/cookbooks/openssl.tar.gz
INFO: Checking out the master branch.
INFO: Checking the status of the vendor branch.
INFO: Vendor branch found.
INFO: Removing pre-existing version.
INFO: Uncompressing openssl version 0.1.0.
INFO: Adding changes.
INFO: Committing changes.
WARN: Checking out the master branch.
WARN: No changes from current vendor openssl
INFO: Downloading apache2 from the cookbooks site at version 0.10.1
INFO: Cookbook saved: /Users/adam/src/sandbox/opscode/chef-repo/cookbooks/apache2.tar.gz
INFO: Checking out the master branch.
INFO: Checking the status of the vendor branch.
INFO: Vendor branch found.
INFO: Removing pre-existing version.
INFO: Uncompressing apache2 version 0.10.1.
INFO: Adding changes.
INFO: Committing changes.
WARN: Checking out the master branch.
WARN: No changes from current vendor apache2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment