4f1d5f156d
Add RuntimeDirectory=redis to systemd unit file (RHBZ #1454700) Mark rundir as %ghost since it may disappear (tmpfs - #1454700) Fix a shutdown failure with Unix domain sockets (RHBZ #1444988) Patch contributed by Nathan Scott
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=0750
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|