Skip to content

Commit

Permalink
3.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Seth Thomas committed Feb 28, 2015
1 parent 41760f3 commit 01f0c93
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 11 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## v3.1.0

* Riak `2.0.5` is now the default
* Removal of `enterprise_package recipe`
* Removal of `custom_package recipe`
* All logic for the removed recipes moved to `pacakge`
* Make Java install truely optional instead of based on config
* Remove extraneous attributes
* Checksums moved to attributes
* Cleaned up test-kitchen configs to refelct above changes
* FreeBSD support (finally)

## v3.0.2

* Riak `2.0.2` is now the default
Expand Down
20 changes: 11 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,21 @@ latency.

## Requirements

### Platforms
* Chef 11 or higher

## Platform Support

* Ubuntu 14.04
* Ubuntu 12.04
* Debian 7.2.0
* CentOS 7.0
* CentOS 6.5
* CentOS 5.10
* Debian 7
* CentOS 7
* CentOS 6
* CentOS 5
* Fedora 19
* FreeBSD 10.1
* FreeBSD 9.2

### Cookbooks
## Cookbook Dependencies

* apt
* build-essential
Expand Down Expand Up @@ -251,8 +253,8 @@ are set appropriately:

```ruby
default['riak']['install_method'] = 'custom_package'
default['riak']['package']['local']['checksum'] = 'db290d17208861b2eb8694d2eb3d1dc8e7ad280edf577fac8bd355446ca6b85a'
default['riak']['package']['local']['url'] = 'http://s3.amazonaws.com/downloads.basho.com/riak/2.0/2.0.2/ubuntu/precise'
default['riak']['package']['local']['checksum'] = '186f6b4890bb72aaab5c0a2b6cd31ff90f2098d8a50c955a8ed3a80e26d67c57'
default['riak']['package']['local']['url'] = 'http://s3.amazonaws.com/downloads.basho.com/riak/2.0/2.0.5/ubuntu/trusty'
```

**NOTE**: FreeBSD uses custom_package regardless.
Expand All @@ -270,7 +272,7 @@ Basho's) and want to install Riak from there, ensure that
If you want to install Riak (and Erlang) from source, ensure that
`node['riak']['install_method']` is set to `source`.

## License and Author
## License and Authors

* Author: Benjamin Black (<[email protected]>)
* Author: Sean Carey (<[email protected]>)
Expand Down
4 changes: 2 additions & 2 deletions metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
maintainer_email '[email protected]'
license 'Apache 2.0'
description 'Installs and configures Riak distributed data store'
version '3.0.2'
version '3.1.0'

recipe 'riak', 'Installs Riak from a package'
recipe 'riak::source', 'Installs Erlang and Riak from source'
Expand All @@ -39,6 +39,6 @@
depends 'packagecloud'
depends 'pkg_add'

%w{ubuntu debian centos redhat fedora amazon}.each do |os|
%w{ubuntu debian centos redhat fedora amazon freebsd}.each do |os|
supports os
end

0 comments on commit 01f0c93

Please sign in to comment.