Skip to content

Commit

Permalink
Merge pull request #88 from streambinder/master
Browse files Browse the repository at this point in the history
fix(debian): install sentinel on stretch/buster
  • Loading branch information
noelmcloughlin authored Apr 2, 2021
2 parents de567a6 + a4a5d3c commit 0eff32f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
4 changes: 3 additions & 1 deletion redis/osfamilymap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ Debian:
svc_name: redis-server
logfile: /var/log/redis/redis-server.log
pidfile: /var/run/redis/redis-server.pid
sentinel_pkg: redis-server
sentinel_pkg: redis-sentinel
sentinel_service: redis-sentinel
sentinel_cfg: /etc/redis/sentinel.conf
sentinel_logfile: /var/log/redis/redis-sentinel.log
sentinel:
pidfile: /run/sentinel/redis-sentinel.pid
RedHat:
pkg_name: redis
python_dev_package: python-devel
Expand Down
13 changes: 9 additions & 4 deletions redis/osfingermap.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
# -*- coding: utf-8 -*-
# vim: ft=yaml
---
Debian-8: &debian-old
sentinel_pkg: redis-server
sentinel:
pidfile: /var/run/redis/sentinel.pid
Debian-7:
cfg_version: '2.4'
<<: *debian-old
cfg_version: "2.4"
Ubuntu-16.04:
cfg_version: '3.0'
cfg_version: "3.0"
sentinel_pkg: redis-sentinel
CentOS Linux-7:
cfg_version: '3.2'
cfg_version: "3.2"
sentinel:
group: root
daemonize: 'no'
daemonize: "no"
CentOS-6:
sentinel:
group: root

0 comments on commit 0eff32f

Please sign in to comment.