https://github.com/juanje/cookbook-redmine
Chef's Cookbook for installing Redmine
https://github.com/juanje/cookbook-redmine
chef chef-cookbook cookbook-redmine cookbooks redmine ruby
Last synced: 6 months ago
JSON representation
Chef's Cookbook for installing Redmine
- Host: GitHub
- URL: https://github.com/juanje/cookbook-redmine
- Owner: juanje
- Created: 2012-03-31T15:02:33.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2013-06-25T03:14:44.000Z (about 13 years ago)
- Last Synced: 2023-04-12T13:02:24.406Z (over 3 years ago)
- Topics: chef, chef-cookbook, cookbook-redmine, cookbooks, redmine, ruby
- Language: Ruby
- Homepage:
- Size: 224 KB
- Stars: 24
- Watchers: 3
- Forks: 22
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Description
===========
Installs the ticketing box with Redmine from the source.
The cookbook will install Redmine with MySql as a database adaptor and Apache2
as a web server.
### Notes for the current cookbook's version
The current version only support MySql and it will be installed at the same
node, but the recipe will take care of it. MySql and Apache2 will be installed
by the recipe.
You don't need to install it previously.
Requirements
============
## Platform:
Tested on:
* Ubuntu (12.04, 12.10)
* CentOS (6.3, 6.4)
## Cookbooks:
* apt
* yum
* runit
* git
* apache2
* passenger\_apache2
* mysql
* postgresql
* build-essential
* openssl
If you are running different chef versions in your box, see
https://github.com/opscode-cookbooks/apt#requirements to configure proper apt
version in Berksfile
### Test the cookbook with Vagrant
You need to have installed Vagrant version 1.1.X and the Berskshelf plugin:
```
$ vagrant plugin install vagrant-berkshelf
```
Then just: `vagrant up`
Remember that you can change some cookbook's behavior through the attributes in the `Vagrantfile`.
Chef the example at `chef.json`.
Attributes
==========
This cookbook uses many attributes, broken up into a few different kinds.
Usage
=====
This cookbook installs Redmine with a defaults confirations to have it working
out the box. But if you like to customize them, just chage it at the attributes.
The easy way is to create your own role and specify your preferences. Here is
an example:
# roles/redmine.rb
name "redmine"
description "Redmine box to manage all the tickets"
run_list("recipe[redmine]")
default_attributes(
"redmine" => {
"databases" => {
"production" => {
"password" => "redmine_password"
}
}
},
"mysql" => {
"server_root_password" => "supersecret_password"
}
)
Chef-solo tips
==============
If you are using chef-solo provider you must specify mysql password attributes:
:mysql => {
:server_root_password => "supersecret_password",
:server_debian_password => "supersecret_password",
:server_repl_password => "supersecret_password"
}
See cookbook note: https://github.com/opscode-cookbooks/mysql#chef-solo-note
License and Author
==================
Author:: Juanje Ojeda ()
Author:: Roberto Majadas ()
Copyright:: 2012-2013, Juanje Ojeda ()
Copyright:: 2013, Roberto Majadas ()
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.