{"id":37634568,"url":"https://github.com/juanje/cookbook-redmine","last_synced_at":"2026-01-16T11:01:50.493Z","repository":{"id":2879864,"uuid":"3886204","full_name":"juanje/cookbook-redmine","owner":"juanje","description":"Chef's Cookbook for installing Redmine","archived":false,"fork":false,"pushed_at":"2013-06-25T03:14:44.000Z","size":229,"stargazers_count":24,"open_issues_count":9,"forks_count":22,"subscribers_count":3,"default_branch":"master","last_synced_at":"2023-04-12T13:02:24.406Z","etag":null,"topics":["chef","chef-cookbook","cookbook-redmine","cookbooks","redmine","ruby"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/juanje.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-03-31T15:02:33.000Z","updated_at":"2023-02-28T18:45:11.000Z","dependencies_parsed_at":"2022-08-31T03:41:30.328Z","dependency_job_id":null,"html_url":"https://github.com/juanje/cookbook-redmine","commit_stats":null,"previous_names":[],"tags_count":3,"template":null,"template_full_name":null,"purl":"pkg:github/juanje/cookbook-redmine","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juanje%2Fcookbook-redmine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juanje%2Fcookbook-redmine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juanje%2Fcookbook-redmine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juanje%2Fcookbook-redmine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/juanje","download_url":"https://codeload.github.com/juanje/cookbook-redmine/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juanje%2Fcookbook-redmine/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28478106,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T06:30:42.265Z","status":"ssl_error","status_checked_at":"2026-01-16T06:30:16.248Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chef","chef-cookbook","cookbook-redmine","cookbooks","redmine","ruby"],"created_at":"2026-01-16T11:01:50.401Z","updated_at":"2026-01-16T11:01:50.468Z","avatar_url":"https://github.com/juanje.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"Description\n===========\n\nInstalls the ticketing box with Redmine from the source.\n\nThe cookbook will install Redmine with MySql as a database adaptor and Apache2\nas a web server.\n\n### Notes for the current cookbook's version\n\nThe current version only support MySql and it will be installed at the same\nnode, but the recipe will take care of it. MySql and Apache2 will be installed\nby the recipe.\nYou don't need to install it previously.\n\nRequirements\n============\n\n## Platform:\n\nTested on:\n\n* Ubuntu (12.04, 12.10)\n* CentOS (6.3, 6.4)\n\n## Cookbooks:\n\n* apt\n* yum\n* runit\n* git\n* apache2\n* passenger\\_apache2\n* mysql\n* postgresql\n* build-essential\n* openssl\n\nIf you are running different chef versions in your box, see\nhttps://github.com/opscode-cookbooks/apt#requirements to configure proper apt\nversion in Berksfile \n\n### Test the cookbook with Vagrant\n\nYou need to have installed Vagrant version 1.1.X and the Berskshelf plugin:\n\n```\n$ vagrant plugin install vagrant-berkshelf\n```\n\nThen just: `vagrant up`\n\nRemember that you can change some cookbook's behavior through the attributes in the `Vagrantfile`.\nChef the example at `chef.json`.\n\n\nAttributes\n==========\n\nThis cookbook uses many attributes, broken up into a few different kinds.\n\nUsage\n=====\n\nThis cookbook installs Redmine with a defaults confirations to have it working\nout the box. But if you like to customize them, just chage it at the attributes.\n\nThe easy way is to create your own role and specify your preferences. Here is\nan example:\n\n    # roles/redmine.rb\n    name \"redmine\"\n    description \"Redmine box to manage all the tickets\"\n    run_list(\"recipe[redmine]\")\n    default_attributes(\n      \"redmine\" =\u003e {\n        \"databases\" =\u003e {\n          \"production\" =\u003e {\n            \"password\" =\u003e \"redmine_password\"\n          }\n        }\n      },\n      \"mysql\" =\u003e {\n        \"server_root_password\" =\u003e \"supersecret_password\"\n      }\n    )\n\nChef-solo tips\n==============\n\nIf you are using chef-solo provider you must specify mysql password attributes:\n\n    :mysql =\u003e {\n         :server_root_password =\u003e \"supersecret_password\",\n         :server_debian_password =\u003e \"supersecret_password\",\n         :server_repl_password =\u003e \"supersecret_password\"\n       }\n\nSee cookbook note: https://github.com/opscode-cookbooks/mysql#chef-solo-note\n\nLicense and Author\n==================\n\nAuthor:: Juanje Ojeda (\u003cjuanje.ojeda@gmail.com\u003e)\nAuthor:: Roberto Majadas (\u003croberto.majadas at openshine.com\u003e)\n\nCopyright:: 2012-2013, Juanje Ojeda (\u003cjuanje.ojeda@gmail.com\u003e)\nCopyright:: 2013, Roberto Majadas (\u003croberto.majadas at openshine.com\u003e)\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuanje%2Fcookbook-redmine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjuanje%2Fcookbook-redmine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuanje%2Fcookbook-redmine/lists"}