From 339f2f492ed524a5eae48e799b2d1349c52473b3 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 22 Dec 2001 01:17:09 +0000 Subject: Use target_skeleton dir to store conf files and init scripts under version control -Erik --- sources/target_skeleton/etc/init.d/S01mount | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 sources/target_skeleton/etc/init.d/S01mount (limited to 'sources/target_skeleton/etc/init.d/S01mount') diff --git a/sources/target_skeleton/etc/init.d/S01mount b/sources/target_skeleton/etc/init.d/S01mount new file mode 100755 index 000000000..85d3ab5a6 --- /dev/null +++ b/sources/target_skeleton/etc/init.d/S01mount @@ -0,0 +1,15 @@ +#!/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 -a > /dev/null 2>&1 +if [ $? = 0 ] ; then + echo "ok" +else + echo "failed" +fi + +exit 0 + -- cgit v1.2.3