Skip to content

Commit 028794a

Browse files
committed
prepare release 1.8.0
1 parent c369231 commit 028794a

File tree

3 files changed

+29
-8
lines changed

3 files changed

+29
-8
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 2016-04-05 - 1.8.0 (Feature/Bugfix release)
2+
3+
#### Features:
4+
5+
- (e37283e) Add the possibility to exclude logrotate
6+
- (316f492) RedHat 7: add systemd support
7+
- (316f492) Sentinel: add parameter `sentinel_ip` for binding address
8+
- (3fdbca0) Server::install: add parameter `download_base` at install class to specify download url of source tar.gz
9+
- (e47fc28) Gentoo: add support for Gentoo
10+
11+
#### Bugfixes:
12+
13+
- (6dea873) fix source entry for forge api in metadata.json
14+
115
## 2015-12-02 - 1.7.0 (Feature/Bugfix release)
216

317
#### Features:

README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -416,9 +416,13 @@ Name of Redis instance. Default: call name of the function.
416416
The name is used to create the init script(s), which follows the pattern
417417
`redis-sentinel_${sentinel_name}`
418418

419+
#####`sentinel_ip`
420+
421+
Listen IP of sentinel. Default: 6379
422+
419423
#####`sentinel_port`
420424

421-
Listen port of Redis. Default: 6379
425+
Listen port of sentinel. Default: 6379
422426

423427
#####`sentinel_log_dir`
424428

@@ -430,6 +434,11 @@ Path for log. Full log path is `sentinel_log_dir`/sentinel_`sentinel_name`.log.
430434
Default is '/var/run' (string).
431435
Path for pid file. Full pid file path is `sentinel_pid_dir`/sentinel_`sentinel_name`.pid.
432436

437+
#####`sentinel_run_dir`
438+
439+
Default: `/var/run/redis` (string)
440+
Since sentinels automatically rewrite their config since version 2.8 the puppet managed config will be copied
441+
to this directory and than sentinel will start with this copy.
433442

434443
#####`monitors`
435444

metadata.json

+5-7
Original file line numberDiff line numberDiff line change
@@ -22,25 +22,23 @@
2222
"requirements": [
2323
{
2424
"name": "pe",
25-
"version_requirement": "3.x"
25+
"version_requirement": ">= 3.0.0 < 2015.4.0"
2626
},
2727
{
2828
"name": "puppet",
29-
"version_requirement": ">=2.7.20 <5.0.0"
29+
"version_requirement": ">= 3.0.0 < 5.0.0"
3030
}
3131
],
32+
"description": "Redis module",
3233
"name": "dwerder-redis",
33-
"version": "1.7.0",
34+
"version": "1.8.0",
3435
"source": "https://github.com/echocat/puppet-redis.git",
3536
"author": "Daniel Werdermann",
3637
"license": "MPL-2.0",
3738
"summary": "Install and configure redis and sentinel from repo or source",
3839
"project_page": "https://github.com/echocat/puppet-redis",
3940
"issues_url": "https://github.com/echocat/puppet-redis/issues",
4041
"dependencies": [
41-
{
42-
"name": "puppetlabs/stdlib",
43-
"version_requirement": ">= 4.2.0"
44-
}
42+
{"name":"puppetlabs/stdlib","version_requirement":">= 4.6.0 < 5.0.0"}
4543
]
4644
}

0 commit comments

Comments
 (0)