From fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 8 Jul 2015 20:46:52 -0400 Subject: Initial commit --- util/pkgrepo | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 util/pkgrepo (limited to 'util/pkgrepo') diff --git a/util/pkgrepo b/util/pkgrepo new file mode 100755 index 00000000..1f521c6f --- /dev/null +++ b/util/pkgrepo @@ -0,0 +1,13 @@ +#!/bin/bash +# +# PKGREPO - Get the repository base URI, either from the environment +# variable 'IRAF_REPO' or the default. + + +if [ -z "$IRAF_REPO" ]; then + /bin/echo "ftp://iraf.noao.edu/iraf/v216/REPO" +else + /bin/echo $IRAF_REPO +fi + +exit 0 -- cgit