kumquat-buildroot/target/device/Atmel/atngw100/target_skeleton/etc/init.d/S49netfs

12 lines
167 B
Plaintext
Raw Normal View History

2007-07-29 09:17:01 +02:00
#!/bin/sh
MOUNT=/bin/mount
echo -n "Mounting remote filesystems:"
if ${MOUNT} -t nfs -a > /dev/null 2> /dev/null; then
echo " done"
else
echo " failed"
exit 1
fi