#!/bin/sh

#
# /etc/murasaki/network 
#

s_match () { case $1 in $2) return 0; ;; *) return 1; ;; esac ; }

if s_match "$2" "eth[0-9]" ; then
  exec /etc/pcmcia/network $@
fi

