Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Commit

Permalink
prepare release 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dwerder committed Dec 5, 2014
1 parent c51e34b commit 09f6105
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 2014-12-05 - 1.2.3 (Bugfix release)

#### Bugfixes:

- Debian: fix package name to redis-server

## 2014-12-03 - 1.2.2 (Bugfix release)

#### Bugfixes:
Expand Down
2 changes: 1 addition & 1 deletion Modulefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name 'dwerder-redis'
version '1.2.2'
version '1.2.3'
source 'git clone https://github.com/echocat/puppet-redis.git'
author 'Daniel Werdermann'
license 'Mozilla Public License Version 2.0'
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ Most of the time you will only need `redis_version`.
}
```
To install redis from package use the following parameters.
You will need `redis_version` and `redis_package`
You will need `redis_version` and `redis_package`.
```puppet
class { 'redis::install':
redis_version => '2.8.17-2',
redis_version => '2.8.18-1.el6.remi',
redis_package => true,
}
```
Expand Down
4 changes: 2 additions & 2 deletions manifests/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
'Debian', 'Ubuntu': {
package { 'redis-server' : ensure => $redis_version, }
}
'Fedora', 'RedHat', 'CentOS', 'OEL', 'OracleLinux', 'Amazon': {
'Fedora', 'RedHat', 'CentOS', 'OEL', 'OracleLinux', 'Amazon', 'Scientific': {
package { 'redis' : ensure => $redis_version, }
}
default: {
Expand All @@ -39,7 +39,7 @@
'Debian', 'Ubuntu': {
ensure_packages('build-essential', {'before' => Anchor['redis::prepare_build']} )
}
'Fedora', 'RedHat', 'CentOS', 'OEL', 'OracleLinux', 'Amazon': {
'Fedora', 'RedHat', 'CentOS', 'OEL', 'OracleLinux', 'Amazon', 'Scientific': {
ensure_packages(['make', 'gcc', 'glibc-devel'], {'before' => Anchor['redis::prepare_build']})
}
default: {
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
}
],
"name": "dwerder-redis",
"version": "1.2.2",
"version": "1.2.3",
"source": "git clone https://github.com/echocat/puppet-redis.git",
"author": "Daniel Werdermann",
"license": "Mozilla Public License Version 2.0",
Expand Down

0 comments on commit 09f6105

Please sign in to comment.