crontab에서 스크립트를 실행할 때 이 오류를 극복하는 방법은 무엇입니까?

crontab에서 스크립트를 실행할 때 이 오류를 극복하는 방법은 무엇입니까?

이것은 기본적으로 내 스크립트입니다.

#!/bin/sh
#set -x

PATH=/usr/jdk/instances/current/bin:/usr/bin:/bin:/opt/ss7/access/bin:/opt/ss7/sgc/bin:/opt/ss7/access/install:/opt/ss7/sgc/install:/usr/jdk/instances/current/bin:/bin:/usr/bin:/usr/local/bin:/usr/sbin:/usr/ccs/bin:/usr/openwin/bin:/usr/ucb:/opt/stg/5.0/bin:/opt/stg/5.0/tools

/opt/stg/5.0/bin/ctl status all > stgstatus.txt

MINUTE=`cat stgstatus.txt |grep traffic |awk '{print $2}' |cut -d"|" -f1`

if [ $MINUTE -eq 0 ];then
    /opt/stg/5.0/bin/ctl restart all
fi

하지만 crontab이 이를 실행하려고 하면 항상 이 오류가 발생합니다. 내 스크립트에 명령이 없습니다 whoami. 왜 오류가 발생합니까?

From stg Sat May  2 19:49 MYT 2015
To: stg
Subject: Output from "cron" command
MIME-Version:
Content-Type:
Content-Length:

Your "cron" job on ckpgumb10
/var/tmp/checkstgstatus.sh

produced the following output:

/opt/stg/5.0/bin/ctl[906]: whoami:  not found

이것이 내 crontab의 모습입니다.

49 * * * * /var/tmp/checkstgstatus.sh

편집 #1

임시 파일 stgstatus.txt의 형식은 다음과 같습니다.

# | Handler      | Mode         |    PID | Start Time | CPU time | Command
==============================================================================
 1 | stg_d7       | standard     |  14998 |     May_01 |    00:00 | /opt/stg/5.0/bin/daemon
Detailed stg_d7 status (stg_d7status):
0 - IWU running
release SunOS5.10 5.0.0.70
node ckpgumb10 172.19.144.181
started 2015.05.01 20:04:39
traffic 0|0|32768 (last minute|hour|day)

자세한 상태가 종료되고 stg_d7status가 0을 반환합니다(모든 것이 정상임).

 2 | tcapproxy    | standard     |  15105 |     May_01 |    09:25 | java
   |              |              |  15102 |     May_01 |    00:04 | lsr-relay
Detailed tcapproxy status (tcapproxystatus):
05/02/15-19:30:05 TcapProxy is running.
end of detailed status, tcapproxystatus returned 0 (all ok)

관련 정보