mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
package/redis: Add systemV init script
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>
This commit is contained in:
parent
a26dd76836
commit
b386fda5cb
38
package/redis/S50redis
Normal file
38
package/redis/S50redis
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
#!/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 $?
|
@ -30,4 +30,9 @@ define REDIS_INSTALL_TARGET_CMDS
|
|||||||
$(TARGET_DIR)/etc/redis.conf
|
$(TARGET_DIR)/etc/redis.conf
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define REDIS_INSTALL_INIT_SYSV
|
||||||
|
$(INSTALL) -m 0755 -D package/redis/S50redis \
|
||||||
|
$(TARGET_DIR)/etc/init.d/S50redis
|
||||||
|
endef
|
||||||
|
|
||||||
$(eval $(generic-package))
|
$(eval $(generic-package))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user