File tree 3 files changed +29
-8
lines changed
3 files changed +29
-8
lines changed Original file line number Diff line number Diff line change
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
+
1
15
## 2015-12-02 - 1.7.0 (Feature/Bugfix release)
2
16
3
17
#### Features:
Original file line number Diff line number Diff line change @@ -416,9 +416,13 @@ Name of Redis instance. Default: call name of the function.
416
416
The name is used to create the init script(s), which follows the pattern
417
417
` redis-sentinel_${sentinel_name} `
418
418
419
+ #####` sentinel_ip `
420
+
421
+ Listen IP of sentinel. Default: 6379
422
+
419
423
#####` sentinel_port `
420
424
421
- Listen port of Redis . Default: 6379
425
+ Listen port of sentinel . Default: 6379
422
426
423
427
#####` sentinel_log_dir `
424
428
@@ -430,6 +434,11 @@ Path for log. Full log path is `sentinel_log_dir`/sentinel_`sentinel_name`.log.
430
434
Default is '/var/run' (string).
431
435
Path for pid file. Full pid file path is ` sentinel_pid_dir ` /sentinel_ ` sentinel_name ` .pid.
432
436
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.
433
442
434
443
#####` monitors `
435
444
Original file line number Diff line number Diff line change 22
22
"requirements" : [
23
23
{
24
24
"name" : " pe" ,
25
- "version_requirement" : " 3.x "
25
+ "version_requirement" : " >= 3.0.0 < 2015.4.0 "
26
26
},
27
27
{
28
28
"name" : " puppet" ,
29
- "version_requirement" : " >=2.7.20 < 5.0.0"
29
+ "version_requirement" : " >= 3.0.0 < 5.0.0"
30
30
}
31
31
],
32
+ "description" : " Redis module" ,
32
33
"name" : " dwerder-redis" ,
33
- "version" : " 1.7 .0" ,
34
+ "version" : " 1.8 .0" ,
34
35
"source" : " https://github.com/echocat/puppet-redis.git" ,
35
36
"author" : " Daniel Werdermann" ,
36
37
"license" : " MPL-2.0" ,
37
38
"summary" : " Install and configure redis and sentinel from repo or source" ,
38
39
"project_page" : " https://github.com/echocat/puppet-redis" ,
39
40
"issues_url" : " https://github.com/echocat/puppet-redis/issues" ,
40
41
"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" }
45
43
]
46
44
}
You can’t perform that action at this time.
0 commit comments