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
298 B
Desktop File
16 lines
298 B
Desktop File
[Unit]
|
|
Description=Redis persistent key-value database
|
|
After=network.target
|
|
|
|
[Service]
|
|
ExecStart=/usr/bin/redis-server /etc/redis.conf --daemonize no
|
|
ExecStop=/usr/libexec/redis-shutdown
|
|
User=redis
|
|
Group=redis
|
|
RuntimeDirectory=redis
|
|
RuntimeDirectoryMode=0755
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|