#!/bin/sh # # This file is part of the FreeWRT project. FreeWRT is copyrighted # material, please see the LICENCE file in the top-level directory # or at http://www.freewrt.org/licence for details. # # Christian Fischer # case $1 in autostart|start) ;; *) echo "Usage: $0 start|autostart" exit 1 ;; esac rm -f /bin/ifup /bin/ifdown ln -sf /opt/ifupdown/bin/ifupdown.sh /bin/ifup ln -sf /opt/ifupdown/bin/ifupdown.sh /bin/ifdown # vim:ts=4