mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 07:37:14 +08:00
71 lines
1.2 KiB
Bash
71 lines
1.2 KiB
Bash
#!/bin/bash
|
|
|
|
daemon_bin="/usr/lib/git-core/git-daemon"
|
|
daemon_name=$(basename $daemon_bin)
|
|
PIDF="/var/run/$daemon_name.pid"
|
|
|
|
. /etc/rc.conf
|
|
. /etc/rc.d/functions
|
|
. /etc/conf.d/$daemon_name.conf
|
|
|
|
get_pid() {
|
|
pidof -o %PPID $daemon_name
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
stat_busy "Starting $daemon_name daemon"
|
|
|
|
PID=$(get_pid)
|
|
if [ -z "$PID" ]; then
|
|
[ -f $PIDF ] && rm -f $PIDF
|
|
# RUN
|
|
$daemon_bin --pid-file=$PIDF $GIT_DAEMON_ARGS
|
|
#
|
|
if [ $? -gt 0 ]; then
|
|
stat_fail
|
|
exit 1
|
|
else
|
|
echo $(get_pid) > $PIDF
|
|
add_daemon $daemon_name
|
|
stat_done
|
|
fi
|
|
else
|
|
stat_fail
|
|
exit 1
|
|
fi
|
|
;;
|
|
|
|
stop)
|
|
stat_busy "Stopping $daemon_name daemon"
|
|
PID=$(get_pid)
|
|
# KILL
|
|
[ ! -z "$PID" ] && kill $PID &> /dev/null
|
|
#
|
|
if [ $? -gt 0 ]; then
|
|
stat_fail
|
|
exit 1
|
|
else
|
|
rm -f $PIDF &> /dev/null
|
|
rm_daemon $daemon_name
|
|
stat_done
|
|
fi
|
|
;;
|
|
|
|
restart)
|
|
$0 stop
|
|
sleep 3
|
|
$0 start
|
|
;;
|
|
|
|
status)
|
|
stat_busy "Checking $daemon_name status";
|
|
ck_status $daemon_name
|
|
;;
|
|
|
|
*)
|
|
echo "usage: $0 {start|stop|restart|status}"
|
|
esac
|
|
|
|
exit 0
|