b386fda5cb
start-stop-daemon is used to start redis-server as user redis in the background. Once redis-server is running we use redis-cli to shutdown cleanly. Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
39 lines
503 B
Bash
39 lines
503 B
Bash
#!/bin/sh
|
|
#
|
|
# start redis
|
|
#
|
|
|
|
start() {
|
|
echo -n "Starting redis: "
|
|
umask 077
|
|
start-stop-daemon -S -q -c redis:redis -b \
|
|
--exec /usr/bin/redis-server -- /etc/redis.conf
|
|
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
|
}
|
|
stop() {
|
|
echo -n "Stopping redis: "
|
|
/usr/bin/redis-cli shutdown
|
|
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
|
}
|
|
restart() {
|
|
stop
|
|
start
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart|reload)
|
|
restart
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|