openggsn-config: share one gprs_routing file for different machines

there's no point in having two identical gprs_routing files in the
two machine-specific directories.  So let's share one common file.
This commit is contained in:
Harald Welte 2017-02-10 16:25:13 +01:00
parent 29dd84c82a
commit be388bd7d5
2 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
#!/bin/sh
NAME=gprs_routing
set -e
case "$1" in
start)
echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -I POSTROUTING -o eth0 -j MASQUERADE
echo "Enabled masquerading"
;;
stop)
echo 0 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -D POSTROUTING -o eth0 -j MASQUERADE
;;
*)
N=/etc/init.d/$NAME
echo "Usage: $N {start|stop|restart|force-reload}" >&2
exit 1
esac
exit 0