#!/bin/sh # # Delegate event handling: # /sbin/hotplug FOO ..args.. ==> /etc/hotplug/FOO.agent ..args.. # cd /etc/hotplug AGENT=/etc/hotplug/$1.agent if [ -x $AGENT ]; then shift exec $AGENT "$@" exit 1 fi exit 1