From 359dc6d0679ecb00063099f8915cd1b43a127d0a Mon Sep 17 00:00:00 2001 From: James Rayner Date: Sun, 31 Jan 2010 09:36:14 +1100 Subject: Add early checks for optional dependencies --- ifplugd/net-auto-wired | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ifplugd/net-auto-wired') diff --git a/ifplugd/net-auto-wired b/ifplugd/net-auto-wired index 12d1201..9af8505 100755 --- a/ifplugd/net-auto-wired +++ b/ifplugd/net-auto-wired @@ -3,6 +3,11 @@ . /etc/rc.conf . /etc/rc.d/functions +if [[ ! -x /usr/sbin/ifplugd ]]; then + echo "Please install 'ifplugd' to use net-auto-wired" + exit 1 +fi + CFG=/etc/ifplugd/ifplugd.conf ACTION=/etc/ifplugd/netcfg.action PIDFILE=/var/run/ifplugd.$WIRED_INTERFACE.pid -- cgit v1.2.3-24-g4f1b