├── README.md ├── attributes └── default.rb ├── files └── default │ └── setup_load_paths.rb ├── metadata.rb ├── recipes └── default.rb └── templates └── default ├── broker.yml.erb ├── database.yml.erb ├── environments_production.rb.erb ├── git-daemon.erb ├── git-poller.erb ├── git-ultrasphinx.erb ├── gitorious-logrotate.erb ├── gitorious.yml.erb ├── gitorious_script_wrapper.erb ├── grants.sql.erb └── rvmrc.erb /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnichol/chef-gitorious/HEAD/README.md -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnichol/chef-gitorious/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /files/default/setup_load_paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnichol/chef-gitorious/HEAD/files/default/setup_load_paths.rb -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnichol/chef-gitorious/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnichol/chef-gitorious/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /templates/default/broker.yml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnichol/chef-gitorious/HEAD/templates/default/broker.yml.erb -------------------------------------------------------------------------------- /templates/default/database.yml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnichol/chef-gitorious/HEAD/templates/default/database.yml.erb -------------------------------------------------------------------------------- /templates/default/environments_production.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnichol/chef-gitorious/HEAD/templates/default/environments_production.rb.erb -------------------------------------------------------------------------------- /templates/default/git-daemon.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnichol/chef-gitorious/HEAD/templates/default/git-daemon.erb -------------------------------------------------------------------------------- /templates/default/git-poller.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnichol/chef-gitorious/HEAD/templates/default/git-poller.erb -------------------------------------------------------------------------------- /templates/default/git-ultrasphinx.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnichol/chef-gitorious/HEAD/templates/default/git-ultrasphinx.erb -------------------------------------------------------------------------------- /templates/default/gitorious-logrotate.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnichol/chef-gitorious/HEAD/templates/default/gitorious-logrotate.erb -------------------------------------------------------------------------------- /templates/default/gitorious.yml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnichol/chef-gitorious/HEAD/templates/default/gitorious.yml.erb -------------------------------------------------------------------------------- /templates/default/gitorious_script_wrapper.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnichol/chef-gitorious/HEAD/templates/default/gitorious_script_wrapper.erb -------------------------------------------------------------------------------- /templates/default/grants.sql.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnichol/chef-gitorious/HEAD/templates/default/grants.sql.erb -------------------------------------------------------------------------------- /templates/default/rvmrc.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnichol/chef-gitorious/HEAD/templates/default/rvmrc.erb --------------------------------------------------------------------------------