diff options
| author | Simon Rettberg | 2013-04-30 19:07:35 +0200 |
|---|---|---|
| committer | Simon Rettberg | 2013-04-30 19:07:35 +0200 |
| commit | 7011f2d77ad451fb3e776528badd5c9ca2e69d37 (patch) | |
| tree | ef668013d907d74d0f2813940e349fbe1d028fc3 | |
| parent | update mountexport script (diff) | |
| download | tm-scripts-7011f2d77ad451fb3e776528badd5c9ca2e69d37.tar.gz tm-scripts-7011f2d77ad451fb3e776528badd5c9ca2e69d37.tar.xz tm-scripts-7011f2d77ad451fb3e776528badd5c9ca2e69d37.zip | |
duh
| -rwxr-xr-x | remote/rootfs/rootfs-stage32/data/usr/sbin/mountexport | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remote/rootfs/rootfs-stage32/data/usr/sbin/mountexport b/remote/rootfs/rootfs-stage32/data/usr/sbin/mountexport index 2623dc26..61176364 100755 --- a/remote/rootfs/rootfs-stage32/data/usr/sbin/mountexport +++ b/remote/rootfs/rootfs-stage32/data/usr/sbin/mountexport @@ -12,6 +12,6 @@ else fi echo "Mounting ${EXPORT} to /openslx/mnt" -mount -t nfs -o ro,async,nolock,vers=3 "$EXPORT" /openslx/mnt || { echo "Fail." && exit 1 } +mount -t nfs -o ro,async,nolock,vers=3 "$EXPORT" /openslx/mnt || { echo "Fail." && exit 1; } echo "Appending /openslx/mnt to /" -mount -o remount,append:/openslx/mnt=ro / || { echo "Fail." && exit 1 } +mount -o remount,append:/openslx/mnt=ro / || { echo "Fail." && exit 1; } |
