#!/bin/sh
PREREQ=""
prereqs()
{
     echo "$PREREQ"
}

case $1 in
prereqs)
     prereqs
     exit 0
     ;;
esac

if [ ! -x /usr/sbin/qcontrol ] || [ ! -f /etc/qcontrol.conf ] ; then
    exit 0
fi

. /usr/share/initramfs-tools/hook-functions
# Begin real processing below this line

copy_exec /usr/sbin/qcontrol /sbin
cp /etc/qcontrol.conf ${DESTDIR}/etc/qcontrol.conf
exit 0
