#!/bin/sh 

set -x

if [ -f /cdrom/preseed/oem-preseed.cfg ]; then
    debconf-set-selections /cdrom/preseed/oem-preseed.cfg
fi

if [ -f /cdrom/preseed/ubuntu-recovery.cfg ]; then
    debconf-set-selections /cdrom/preseed/ubuntu-recovery.cfg
fi
