# As of right now, this script simply checks if a password file
# exists. Eventually, we will want a program that prints out information
# about the password, like this:

# The following Mathematica password file entries apply to the machine
# on which you are currently running:
# 
# Licensed product: .....
# ....
# << copy from license certificate >>
# 
# << + look for network license server >>

if [ -f $TARGET/Configuration/Licensing/mathpass ]; then
   exit 0
else
   exit 1
fi

