- Begin veth support...

This commit is contained in:
2025-06-30 18:06:00 +02:00
parent 91a6d88485
commit 41ad7590d9
2 changed files with 142 additions and 32 deletions

View File

@@ -21,34 +21,6 @@ LOG=":"
# Some functions to make the below more readable
#--------------------------------------------------------------------------------------------------------------------------
# Rx3-Start
#--------------------------------------------------------------------------------------------------------------------------
rx3-start()
{
network_table_init
network_forward_start
}
#--------------------------------------------------------------------------------------------------------------------------
# Rx3-Stop
#--------------------------------------------------------------------------------------------------------------------------
rx3-stop()
{
network_forward_stop
network_table_deinit
return 0
}
#--------------------------------------------------------------------------------------------------------------------------
# Start
#--------------------------------------------------------------------------------------------------------------------------
@@ -62,7 +34,7 @@ start()
echo "already started"
RETVAL=0
else
rx3-start
network_start
RETVAL=$?
[ "$RETVAL" = 0 ] && touch /var/lock/subsys/rx3-net
@@ -83,7 +55,7 @@ stop()
if [ -r /var/lock/subsys/rx3-net ]
then
rx3-stop
network_stop
RETVAL=$?
else