我制作了一个脚本,其中第一步是检查 Mac 是否在线(否则甚至不需要启动脚本)。在终端中它工作得很好:一切都按预期运行。
我想通过 cron 作业在晚上 23:30 运行它,所以我创建了一个 cron 作业并记录了整个过程。然而,日志显示 Mac 的 Ping 失败,但它们肯定在线。
有什么想法可能导致这种情况吗?
这是脚本本身:
#!/bin/bash
#Array of Mac hostnames separated by spaces
my_macs=( Mac111 Mac121 Mac122 Mac123 Mac124 Mac126 Mac127 Mac128 Mac129 )
# Number of days the remote Mac is allowed to be up
MAX_UPDAYS=1
CURR_TIME=$(date +%s)
MAX_UPTIME=$(( MAX_UPDAYS * 86400 ))
ADMINUSER="pcpatch"
#Steps through each hostname and issues SSH command to that host
#Loops through the elements of the Array
echo "Remote Shutdown Check vom $(date)" >> /Users/pcpatch/desktop/shutdown/Log/remoteshutdown.log
for MAC in "${my_macs[@]}"
do
echo -n "Überprüfe ${MAC}... " >> /Users/pcpatch/desktop/shutdown/Log/remoteshutdown.log
# -q quiet
# -c nb of pings to perform
if ping -q -c3 "${MAC}" >/dev/null; then
echo "${MAC} ist angeschaltet. Laufzeit wird ermittelt... " >> /Users/pcpatch/desktop/shutdown/Log/remoteshutdown.log
BOOT_TIME=0
# Get time of boot from remote Mac
BOOT_TIME=$(ssh "${ADMINUSER}@${MAC}" sysctl -n kern.boottime | sed -e 's/.* sec = \([0-9]*\).*/\1/')
if [ "$BOOT_TIME" -gt 0 ] && [ $(( CURR_TIME - BOOT_TIME )) -ge $MAX_UPTIME ]; then
echo "${MAC} ist über 24 Stunden online. Shutdown wird ausgeführt!" >> /Users/pcpatch/desktop/shutdown/Log/remoteshutdown.log
ssh "${ADMINUSER}@${MAC}" 'sudo /sbin/shutdown -h now'
else
echo "${MAC} ist noch keine 24 Stunden online. Shutdown wird abgebrochen!" >> /Users/pcpatch/desktop/shutdown/Log/remoteshutdown.log
fi
else
echo "${MAC} ist nicht erreicbar Ping (Ping fehlgeschlagen)" >> /Users/pcpatch/desktop/shutdown/Log/remoteshutdown.log
fi
done
在 cron 作业中我写道:
30 23 * * * /User/myuser/Shutdown/Shutdown.sh
答案1
您需要PATH
为要在cron
.默认是PATH=/usr/bin:bin
并且你需要(至少)/sbin
在那里。
#!/bin/bash
export PATH=/usr/local/bin/:/usr/bin:/bin:/usr/sbin:/sbin
...
ping
您还可以考虑稍微调整测试中的选项。一旦收到一个响应(即主机唤醒),就-o
允许退出。ping
强制-W1000
等待依赖的时间的上限。在我的测试中,这导致ping
最多等待四秒钟;如果没有它,我必须等待 14 秒才能得到失败响应:
ping -q -c3 -o -W1000 "${MAC}"