# !/bin/sh M_TITLE="Normal Boot" run_module() { exec $REAL_INIT "$INIT_RUNLEVEL" exit 0 } case "$1" in title) echo "$M_TITLE";; run) run_module;; esac