#!/bin/sh -e

# source debconf library
. /usr/share/debconf/confmodule

# ask about device creation if needed
#if [ `ls /dev/ost/*` -lt 40 ] ; then
db_input high cloop/createdevs || true
#else
#   db_set joystick/createdevs false || true
#fi

# go, go, go! :)
db_go

