#!/bin/sh

# only accept a disk with Apple CoreServices, i.e. system disk.
if [ -e "$1System/Library/CoreServices" ] ; then
	exit 0
fi

# return skip disk status to Installer
exit 48
