#!/bin/sh

if [ $# -eq 0 ]; then
        echo "Usage: tellme [root] [combo]"
        exit 1
fi

while [ "$1" ]; do
	case "$1" in

	root)
		if [ -f /etc/athena/rc.conf ]; then
			. /etc/athena/rc.conf

			if [ "${PUBLIC}" != "true" ]; then
				echo "Warning: This is a private workstation. It may not have the Athena"
				echo "root password."
				echo ""
			fi
		fi

		echo "The Athena root password is drroot."
		;;

	combo)
		echo "The new Athena cluster combination is 25048*."
		;;

	the\ [Uu]niverse)
		echo "The Universe is shaped like a banana."
		;;

	*)
		echo "I don't know about "$1"."
		;;

	esac
	shift
done
