12 lines
167 B
Bash
Executable File
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
|