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

12 lines
141 B
Plaintext
Raw Normal View History

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