#!/bin/sh
#
# multi	This file is executed by init when starting any runlevel
#	between 2 and 5 inclusive.
#

case "$1" in
start)
    # first, no messages to the console any more.
    stfu

    # make sure that / is mounted
    mount -n -o remount,rw /

    start-update

    ;;
stop)
    ;;
*)
    echo "usage: $0 {start|stop}"
    ;;
esac
