#!/bin/sh -e
#
# Report the install settings used.

file=/root/dbootstrap_settings

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

exit 0
