#!/bin/sh -e
#
# Report the install settings used, for installations before etch

file=/root/dbootstrap_settings

if [ -f "$file" ] ; then
    sed "s%^%info: $0: $file: %" < $file
else
    echo "info: $0: $file is missing."
fi

exit 0
