mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-13 12:32:59 +02:00
rtpproxy: Add initscript
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
66
src/initscripts/init.d/rtpproxy
Executable 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
|
||||
29
src/paks/rtpproxy/install.sh
Normal file
29
src/paks/rtpproxy/install.sh
Normal 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
|
||||
27
src/paks/rtpproxy/uninstall.sh
Normal file
27
src/paks/rtpproxy/uninstall.sh
Normal 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
|
||||
26
src/paks/rtpproxy/update.sh
Normal file
26
src/paks/rtpproxy/update.sh
Normal 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
|
||||
Reference in New Issue
Block a user