#! /bin/sh

if [[ -e /lfs1 ]] ; then
    echo 'jet'
    exit 0
elif [[ -e /scratch1 || -e /scratch2 ]] ; then
    echo 'zeus'
    exit 0
fi

hostname | cut -c1-1
exit $?
