#!/bin/sh
. ./conf/interfaces || exit 1
for i in $INTERFACES; do
  ifconfig $i |grep 'inet' >/dev/null || exit 1
done
