#!/bin/sh
#
#    is this a CD, tape, or floppy distribution?
#
if [ ! -f SystemResources/Manifests/media ]; then
   echo "Media manifest file not found"
fi

cat SystemResources/Manifests/media | awk "/^media / { print \$2 }"

