#!/bin/sh
#
# read fake-hwclock
#

case "$1" in
  start)
    echo "Initialize memi services ..."
    memictl initapps
    ;;
  stop)
    echo -n "not implemented ..."
    ;;
  *)
    echo $"Usage: $0 {start|stop}"
    exit 1
esac

exit $?
