summaryrefslogtreecommitdiffstats
path: root/target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S20network
blob: a9787cdfde1d406adec9aeb158095815c39d5460 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#! /bin/sh

IFUP=/sbin/ifup

echo -n "Network interfaces:"
if ${IFUP} -a > /dev/null 2> /dev/null; then
	echo " done"
else
	echo " failed"
	exit 1
fi