#!/bin/tcsh -f
# JLdL 06Sep12.
#
# Ignore interrupts for security reasons.
onintr -
#
# Capture the terminal type and exit silently on error.
set dummy = $TERM
if ( $status ) exit
#
# Check for a message file.
if ( -f $HOME/.lock ) then
    cat $HOME/.lock
else
    echo "Sua conta foi bloqueada, por favor procure o gerente do sistema em"
    echo "            >>>>>> fma-root@fmail.if.usp.br <<<<<<"
    echo "Your account has been locked, please contact the system manager at"
    echo "            >>>>>> fma-root@fmail.if.usp.br <<<<<<"
endif
set wait =$<
exit
