kumquat-buildroot/target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S49netfs
2007-07-29 07:15:35 +00:00

12 lines
167 B
Bash
Executable File

#!/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