#!/bin/sh -e # # nethotplug manage Debian-specific network interfaces state files # case "$1" in start) : > /etc/hotplug/.run/net.enable ;; stop) if [ -e /etc/hotplug/.run/net.enable ]; then rm -f /etc/hotplug/.run/net.enable fi ;; restart|force-reload) ;; *) echo "Usage: $0 {start|stop|restart|force-reload}" >&2 exit 1 ;; esac