#! /bin/sh
#
# /etc/init.d/umountroot
#
# v 0.1, localtime: 2005/07/06 19:00 CEST
#
# Mount the root filesystem read-only.
#
# Written by Markus Nass <generalstone@gmx.net>
#

PATH=/sbin:/bin

TMPTIME=0

echo -n "Mounting root filesystem read-only... "
mount -n -o remount,ro /
echo "done."

: exit 0
