#!/bin/bash case $ACTION in add) # Call "pppd call adsl" automatically when the modem is plugged in /etc/init.d/speedtouch start ;; remove) # This action does not actually execute from hotplug # But it would be nice if it did /etc/init.d/speedtouch stop ;; esac