cf49c6bbe9
Ensure both the redis and redis-sentinel service files set correct perms. Dropped systemd tmpfiles source, handled directly in systemd service files.
16 lines
303 B
Desktop File
16 lines
303 B
Desktop File
[Unit]
|
|
Description=Redis Sentinel
|
|
After=network.target
|
|
|
|
[Service]
|
|
ExecStart=/usr/bin/redis-sentinel /etc/redis-sentinel.conf --daemonize no
|
|
ExecStop=/usr/libexec/redis-shutdown redis-sentinel
|
|
User=redis
|
|
Group=redis
|
|
RuntimeDirectory=redis
|
|
RuntimeDirectoryMode=0755
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|