redis.service: Fix config and user/group. Ta Timon.

Points redis-server to the appropriate config and runs the server as
redis:redis. Thanks Timon.

Signed-off-by: Fabian Deutsch <fabian.deutsch@gmx.de>
This commit is contained in:
Fabian Deutsch 2012-01-31 15:49:28 +01:00
parent 9134fcdf74
commit e8dff38f7b
2 changed files with 8 additions and 2 deletions

View File

@ -3,8 +3,11 @@ Description=A persistent key-value database
After=syslog.target network.target
[Service]
Type=forking
PIDFile=/var/run/redis/redis.pid
ExecStart=/usr/sbin/redis-server
ExecStart=/usr/sbin/redis-server /etc/redis.conf
User=redis
Group=redis
[Install]
WantedBy=multi-user.target

View File

@ -8,7 +8,7 @@
Name: redis
Version: 2.4.6
Release: 1%{?dist}
Release: 2%{?dist}
Summary: A persistent key-value database
Group: Applications/Databases
@ -114,6 +114,9 @@ fi
%{_unitdir}/%{name}.service
%changelog
* Tue Jan 31 2012 Fabian Deutsch <fabiand@fedoraproject.org> - 2.4.6-2
- Fix .service file, credits go to Timon.
* Thu Jan 12 2012 Fabian Deutsch <fabiand@fedoraproject.org> - 2.4.6-1
- Update to 2.4.6
- systemd unit file added