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

Commit 09f6105

Browse files
committed
prepare release 1.2.3
1 parent c51e34b commit 09f6105

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 2014-12-05 - 1.2.3 (Bugfix release)
2+
3+
#### Bugfixes:
4+
5+
- Debian: fix package name to redis-server
6+
17
## 2014-12-03 - 1.2.2 (Bugfix release)
28

39
#### Bugfixes:

Modulefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name 'dwerder-redis'
2-
version '1.2.2'
2+
version '1.2.3'
33
source 'git clone https://github.com/echocat/puppet-redis.git'
44
author 'Daniel Werdermann'
55
license 'Mozilla Public License Version 2.0'

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ Most of the time you will only need `redis_version`.
4949
}
5050
```
5151
To install redis from package use the following parameters.
52-
You will need `redis_version` and `redis_package`
52+
You will need `redis_version` and `redis_package`.
5353
```puppet
5454
class { 'redis::install':
55-
redis_version => '2.8.17-2',
55+
redis_version => '2.8.18-1.el6.remi',
5656
redis_package => true,
5757
}
5858
```

manifests/install.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
'Debian', 'Ubuntu': {
2626
package { 'redis-server' : ensure => $redis_version, }
2727
}
28-
'Fedora', 'RedHat', 'CentOS', 'OEL', 'OracleLinux', 'Amazon': {
28+
'Fedora', 'RedHat', 'CentOS', 'OEL', 'OracleLinux', 'Amazon', 'Scientific': {
2929
package { 'redis' : ensure => $redis_version, }
3030
}
3131
default: {
@@ -39,7 +39,7 @@
3939
'Debian', 'Ubuntu': {
4040
ensure_packages('build-essential', {'before' => Anchor['redis::prepare_build']} )
4141
}
42-
'Fedora', 'RedHat', 'CentOS', 'OEL', 'OracleLinux', 'Amazon': {
42+
'Fedora', 'RedHat', 'CentOS', 'OEL', 'OracleLinux', 'Amazon', 'Scientific': {
4343
ensure_packages(['make', 'gcc', 'glibc-devel'], {'before' => Anchor['redis::prepare_build']})
4444
}
4545
default: {

metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
}
2828
],
2929
"name": "dwerder-redis",
30-
"version": "1.2.2",
30+
"version": "1.2.3",
3131
"source": "git clone https://github.com/echocat/puppet-redis.git",
3232
"author": "Daniel Werdermann",
3333
"license": "Mozilla Public License Version 2.0",

0 commit comments

Comments
 (0)