#!/bin/sh #---------------------------------------------------------------------------- # /etc/ppp/ip-up - called whenever a isdn raw connection has been come up # # Creation: 18.03.2004 babel # Last Update: $Id$ #---------------------------------------------------------------------------- PATH=/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin name=$1 device=$2 logger raw-up *name=$name* *device=$device* # Call all custom ip-ups for j in /etc/ppp/raw-up.* do if [ -f $j ] then . $j $name $device fi done