From 587b5fbb04af8ed04f395d7ccde850f7fdff266d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 5 Sep 2017 10:53:52 +0200 Subject: even simple (supervised=systemd imply daemonize=no) --- redis-sentinel.service | 2 +- redis.service | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/redis-sentinel.service b/redis-sentinel.service index 4af71f8..242d51a 100644 --- a/redis-sentinel.service +++ b/redis-sentinel.service @@ -4,7 +4,7 @@ After=network.target [Service] Type=notify -ExecStart=/usr/bin/redis-sentinel /etc/redis-sentinel.conf --daemonize no --supervised systemd +ExecStart=/usr/bin/redis-sentinel /etc/redis-sentinel.conf --supervised systemd ExecStop=/usr/libexec/redis-shutdown redis-sentinel User=redis Group=redis diff --git a/redis.service b/redis.service index ccb776e..f999e88 100644 --- a/redis.service +++ b/redis.service @@ -4,7 +4,7 @@ After=network.target [Service] Type=notify -ExecStart=/usr/bin/redis-server /etc/redis.conf --daemonize no --supervised systemd +ExecStart=/usr/bin/redis-server /etc/redis.conf --supervised systemd ExecStop=/usr/libexec/redis-shutdown User=redis Group=redis -- cgit