#!/bin/sh
#
# Dummy init script for obsolete package 'mdctl'.
#
# Copyright (c) 2002 Mario Jou/3en <joussen@debian.org>
# Distributable under the terms of the GNU GPL version 2.

case "$1" in
    start|stop|restart|reload|force-reload)
        ;;
    *)
        echo "Usage: $0 {start|stop|restart|reload|force-reload}"
        exit 1
        ;;
esac

exit 0
