summaryrefslogtreecommitdiffstats
path: root/redis-sentinel.init
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2021-01-12 17:19:37 +0100
committerRemi Collet <remi@remirepo.net>2021-01-12 17:19:37 +0100
commit75ed6068ac89347b0f99b536a4883983ee8614a1 (patch)
tree2c55dfef1a9413529daf9c351990f928322aae02 /redis-sentinel.init
parent5b3d14712c42a868726178d13339f6e4c9a8fddc (diff)
update to 6.2-RC2 (6.1.241)
Diffstat (limited to 'redis-sentinel.init')
-rw-r--r--redis-sentinel.init105
1 files changed, 0 insertions, 105 deletions
diff --git a/redis-sentinel.init b/redis-sentinel.init
deleted file mode 100644
index d75f1c9..0000000
--- a/redis-sentinel.init
+++ /dev/null
@@ -1,105 +0,0 @@
-#!/bin/sh
-#
-# redis init file for starting up the redis-sentinel daemon
-#
-# chkconfig: - 21 79
-# description: Starts and stops the redis-sentinel daemon.
-#
-### BEGIN INIT INFO
-# Provides: redis-sentinel
-# Required-Start: $local_fs $remote_fs $network
-# Required-Stop: $local_fs $remote_fs $network
-# Short-Description: start and stop Sentinel server
-# Description: A persistent key-value database
-### END INIT INFO
-
-# Source function library.
-. /etc/rc.d/init.d/functions
-
-name="redis-sentinel"
-exec="/usr/bin/$name"
-shut="/usr/libexec/redis-shutdown"
-pidfile="/var/run/redis/sentinel.pid"
-SENTINEL_CONFIG="/etc/redis/sentinel.conf"
-
-[ -e /etc/sysconfig/redis-sentinel ] && . /etc/sysconfig/redis-sentinel
-
-lockfile=/var/lock/subsys/redis
-
-start() {
- [ -f $SENTINEL_CONFIG ] || exit 6
- [ -x $exec ] || exit 5
- echo -n $"Starting $name: "
- daemon --user ${REDIS_USER-redis} "$exec $SENTINEL_CONFIG --daemonize yes --pidfile $pidfile"
- retval=$?
- echo
- [ $retval -eq 0 ] && touch $lockfile
- return $retval
-}
-
-stop() {
- echo -n $"Stopping $name: "
- [ -x $shut ] && $shut $name
- retval=$?
- if [ -f $pidfile ]
- then
- # shutdown haven't work, try old way
- killproc -p $pidfile $name
- retval=$?
- else
- success "$name shutdown"
- fi
- echo
- [ $retval -eq 0 ] && rm -f $lockfile
- return $retval
-}
-
-restart() {
- stop
- start
-}
-
-reload() {
- false
-}
-
-rh_status() {
- status -p $pidfile $name
-}
-
-rh_status_q() {
- rh_status >/dev/null 2>&1
-}
-
-
-case "$1" in
- start)
- rh_status_q && exit 0
- $1
- ;;
- stop)
- rh_status_q || exit 0
- $1
- ;;
- restart)
- $1
- ;;
- reload)
- rh_status_q || exit 7
- $1
- ;;
- force-reload)
- force_reload
- ;;
- status)
- rh_status
- ;;
- condrestart|try-restart)
- rh_status_q || exit 0
- restart
- ;;
- *)
- echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart}"
- exit 2
-esac
-exit $?