#!/bin/sh
#
#  PKGREPO - Get the repository base URI, either from the environment
#  variable 'IRAF_REPO' or the default.


if [ -z "$IRAF_REPO" ]; then
   echo "ftp://iraf.noao.edu/iraf/v216/REPO"
else
   echo "$IRAF_REPO"
fi

exit 0
