#!/bin/sh

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

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

	    if [ "${PUBLIC}" != "true" ]; then
		if [ -x /etc/athena/dialuptype ]; then
		    echo "Note: This is a dialup. It does not have the"
		    echo "Athena root password."
		else
		    echo "Warning: This is a private workstation. It may not"
		    echo "have the Athena root password."
		fi
		echo ""
	    fi
	fi

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

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

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

    why)
	echo "because..."
	;;

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

    esac
    shift
done
