#!/bin/sh
#
### BEGIN INIT INFO
# Provides:          bootcd
# Required-Start:    mountall-bootclean $local_fs
# Required-Stop:
# X-Start-Before:    networking
# Default-Start:     S
# Default-Stop:
# Short-Description: bootcd reads changes from floppy if running from bootcd
# Description:       When running from bootcd this script tries to access
#                    the floppy to read changes last time saved with
#                    bootcdflopcp from a running bootcd.
### END INIT INFO

. /lib/lsb/init-functions

[ -r /etc/default/bootcd ] && . /etc/default/bootcd

case "$1" in
  start)
    /usr/share/bootcd/bootcdstart
    ;;
  restart)
    ;;
  status)
    ;;
  force-reload)
    ;;
  stop)
    ;;
  restart)
    ;;
  force-reload)
    ;;
  *)
    echo "Usage: /etc/init.d/bootcdram start" >&2
    exit 1
    ;;
esac

exit 0
