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