mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 11:15:13 +03:00
https://github.com/alsmith/multicast-relay Relay broadcast and multicast packets between interfaces
15 lines
314 B
Text
15 lines
314 B
Text
#!/sbin/openrc-run
|
|
|
|
name="multicast-relay"
|
|
description="Relay broadcast and multicast packets between interfaces"
|
|
|
|
command="/usr/bin/multicast-relay.py"
|
|
command_args="--foreground --interfaces $INTERFACES $EXTRA_PARAMETERS"
|
|
command_background=true
|
|
|
|
pidfile="/run/${RC_SVCNAME}.pid"
|
|
|
|
depend() {
|
|
need net
|
|
}
|
|
|