#!/bin/sh
#
# This file was automatically customized by debmake on Sun, 23 Nov 2003 19:02:50 +0100
#
# Written by Miquel van Smoorenburg <miquels@cistron.nl>.
# Modified for Debian GNU/Linux by Ian Murdock <imurdock@gnu.org>.
# Modified for Debian by Christoph Lameter <clameter@debian.org>

PATH=/bin:/usr/bin:/sbin:/usr/sbin
DAEMON=/usr/sbin/showfsck
# The following value is extracted by debstd to figure out how to generate
# the postinst script. Edit the field to change the way the script is
# registered through update-rc.d (see the manpage for update-rc.d!)
FLAGS="defaults 95"

test -f $DAEMON || exit 0

case "$1" in
  start|stop|restart|force-reload)
    $DAEMON
    ;;
  *)
    echo "Usage: /etc/init.d/showfsck {start|stop|restart|force-reload}"
    exit 1
    ;;
esac

exit 0
