diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-12-06 04:30:19 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-12-06 04:30:19 +0000 |
commit | c930dbf89b0bb825fb000b0c3e7a411701ffe2c4 (patch) | |
tree | 4daf8a06983b129b4d7e5e28e0686ab9ed6d1de7 /sources/target_skeleton/etc/init.d/S01mount | |
parent | 03c53f24c23ef7b06ffcdb0cbaf0a1bb9446fbb7 (diff) |
Some updates...
Diffstat (limited to 'sources/target_skeleton/etc/init.d/S01mount')
-rwxr-xr-x | sources/target_skeleton/etc/init.d/S01mount | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/sources/target_skeleton/etc/init.d/S01mount b/sources/target_skeleton/etc/init.d/S01mount deleted file mode 100755 index 45d0e7bca..000000000 --- a/sources/target_skeleton/etc/init.d/S01mount +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -# Mount all filesystems. We don't mess with -# fsck, since we don't need it here... - -echo -n "Mounting local file systems: " -/bin/mount / -o remount,rw > /dev/null 2>&1 -/bin/mount -a > /dev/null 2>&1 -if [ $? = 0 ] ; then - echo "ok" -else - echo "failed" -fi - -exit 0 - |