milis/talimatname/genel/m/minidlna/minidlna

56 lines
931 B
Plaintext
Raw Normal View History

2016-02-24 01:27:23 +01:00
#!/bin/sh
########################################################################
# Begin minidlna
#
2017-10-27 20:46:27 +02:00
# Tanım: ReadyMedia is a simple media server software
2016-02-24 01:27:23 +01:00
#
# Authors : tnut
#
# Version : LFS x.x saravane
#
# Notes :
#
########################################################################
### BEGIN INIT INFO
# Provides: minidlna
# Required-Start:
# Should-Start:
# Required-Stop:
# Should-Stop:
# Default-Start:
# Default-Stop:
2017-10-27 20:46:27 +02:00
# Short-Tanım:
# Tanım:
2016-02-24 01:27:23 +01:00
# X-LFS-Provided-By:
### END INIT INFO
. /lib/lsb/init-functions
case "${1}" in
start)
log_info_msg "Starting ReadyMedia..."
start_daemon /usr/sbin/minidlnad
;;
stop)
log_info_msg "Stopping ReadyMedia..."
killproc /usr/sbin/minidlnad
;;
restart)
${0} stop
sleep 1
${0} start
;;
*)
echo "Usage: ${0} {start|stop|restart}"
exit 1
;;
esac
exit 0
# End minidlna