#!/bin/sh
#
# Copyright (C) 2003-2006 Kouichirou Eto, All rights reserved.
# This is free software with ABSOLUTELY NO WARRANTY.
# You can redistribute it and/or modify it under the terms of the GNU GPL 2.

case "$1" in
  start)
	qwik-service --ml-start
	;;
  stop)
	qwik-service --ml-stop
	;;
  restart)
	qwik-service --ml-restart
	;;
  *)
	echo "Usage: quickml-ctl {start|stop|restart}"
	exit 1
esac

exit 0
