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

IFDOWN=/sbin/ifdown

echo -n "Stopping networking: "
if ${IFDOWN} -a; then
	echo "done"
else
	echo "failed"
	exit 1
fi