]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/initscripts/init.d/networking/red.up/10-multicast
removed custom background option for urlfilter option is no longer
[people/pmueller/ipfire-2.x.git] / src / initscripts / init.d / networking / red.up / 10-multicast
CommitLineData
d1e90efc
MT
1#!/bin/bash
2
3### This script disables multicast on the red interface
4
5IFACE=`cat /var/ipfire/red/iface 2>/dev/null | tr -d '\012'`
6
7[ "$IFACE" != "" ] && ifconfig $IFACE -multicast
d47ad587
CS
8
9exit 0