rtpproxy: Add initscript

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2016-04-29 21:07:13 +01:00
parent 77d0467c05
commit b5a50b494e
8 changed files with 152 additions and 0 deletions

View File

@@ -110,6 +110,7 @@ etc/rc.d/init.d/random
etc/rc.d/init.d/rc
etc/rc.d/init.d/reboot
etc/rc.d/init.d/rngd
#etc/rc.d/init.d/rtpproxy
#etc/rc.d/init.d/samba
#etc/rc.d/init.d/sane
etc/rc.d/init.d/sendsignals

View File

@@ -112,6 +112,7 @@ etc/rc.d/init.d/random
etc/rc.d/init.d/rc
etc/rc.d/init.d/reboot
etc/rc.d/init.d/rngd
#etc/rc.d/init.d/rtpproxy
#etc/rc.d/init.d/samba
#etc/rc.d/init.d/sane
etc/rc.d/init.d/sendsignals

View File

@@ -112,6 +112,7 @@ etc/rc.d/init.d/random
etc/rc.d/init.d/rc
etc/rc.d/init.d/reboot
etc/rc.d/init.d/rngd
#etc/rc.d/init.d/rtpproxy
#etc/rc.d/init.d/samba
#etc/rc.d/init.d/sane
etc/rc.d/init.d/sendsignals

View File

@@ -1,3 +1,4 @@
etc/rc.d/init.d/rtpproxy
usr/bin/makeann
usr/bin/rtpproxy
#usr/bin/rtpproxy_debug

66
src/initscripts/init.d/rtpproxy Executable file
View File

@@ -0,0 +1,66 @@
#!/bin/sh
########################################################################
# Begin $rc_base/init.d/rtpproxy
#
# Description :
#
# Authors :
#
# Version : 00.00
#
# Notes :
#
########################################################################
. /etc/sysconfig/rc
. ${rc_functions}
eval $(/usr/local/bin/readhash /var/ipfire/ethernet/settings)
PORT_MIN=10000
PORT_MAX=10100
SOCKET="/var/run/rtpproxy.sock"
LISTEN="${GREEN_ADDRESS}"
CUSTOM_ARGS=""
PIDFILE="/var/run/rtpproxy.pid"
if [ -r "/etc/sysconfig/rtpproxy" ]; then
. /etc/sysconfig/rtpproxy
fi
case "${1}" in
start)
boot_mesg "Starting rtpproxy..."
loadproc /usr/bin/rtpproxy -u nobody -p ${PIDFILE} \
-m ${PORT_MIN} -M ${PORT_MAX} -s ${SOCKET} \
-l ${LISTEN} ${CUSTOM_ARGS}
;;
stop)
boot_mesg "Stopping rtpproxy..."
killproc /usr/bin/rtpproxy
;;
reload)
boot_mesg "Reloading rtpproxy..."
reloadproc /usr/bin/rtpproxy
;;
restart)
${0} stop
sleep 1
${0} start
;;
status)
statusproc /usr/bin/rtpproxy
;;
*)
echo "Usage: ${0} {start|stop|reload|restart|status}"
exit 1
;;
esac
# End $rc_base/init.d/rtpproxy

View File

@@ -0,0 +1,29 @@
#!/bin/bash
############################################################################
# #
# This file is part of the IPFire Firewall. #
# #
# IPFire is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License, or #
# (at your option) any later version. #
# #
# IPFire is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with IPFire; if not, write to the Free Software #
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
# #
# Copyright (C) 2007 IPFire-Team <info@ipfire.org>. #
# #
############################################################################
#
. /opt/pakfire/lib/functions.sh
extract_files
start_service ${NAME}
ln -svf ../init.d/rtpproxy /etc/rc.d/rc0.d/K00rtpproxy
ln -svf ../init.d/rtpproxy /etc/rc.d/rc3.d/S99rtpproxy
ln -svf ../init.d/rtpproxy /etc/rc.d/rc6.d/K00rtpproxy

View File

@@ -0,0 +1,27 @@
#!/bin/bash
############################################################################
# #
# This file is part of the IPFire Firewall. #
# #
# IPFire is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License, or #
# (at your option) any later version. #
# #
# IPFire is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with IPFire; if not, write to the Free Software #
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
# #
# Copyright (C) 2007 IPFire-Team <info@ipfire.org>. #
# #
############################################################################
#
. /opt/pakfire/lib/functions.sh
stop_service ${NAME}
remove_files
rm -rf /etc/rc.d/rc*.d/*rtpproxy

View File

@@ -0,0 +1,26 @@
#!/bin/bash
############################################################################
# #
# This file is part of the IPFire Firewall. #
# #
# IPFire is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License, or #
# (at your option) any later version. #
# #
# IPFire is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with IPFire; if not, write to the Free Software #
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
# #
# Copyright (C) 2007 IPFire-Team <info@ipfire.org>. #
# #
############################################################################
#
. /opt/pakfire/lib/functions.sh
./uninstall.sh
./install.sh