我在PowerShell中为Nagios编写了一个小脚本,用于检查文件是否存在。 如果它存在,状态应该是" ok",如果不存在,它应该是" critical"。
问题是当文件不存在时,状态不是"关键",它在Nagios中显示为"未知"。
$path = "c:\test\test.txt"
$critical = 2
$ok = 0
if (-not (Test-Path $path)) {
Write-Host "file not exists"
exit $critical
} else {
Write-Host "file exists"
exit $ok
}
答案 0 :(得分:3)
你的代码没有任何问题,虽然我可能会简化它:
$path = "c:\test\test.txt"
$fileMissing = -not (Test-Path -LiteralPath $path)
$msg = if ($fileMissing) {'file does not exist'} else {'file exists'}
Write-Host $msg
exit ([int]$fileMissing * 2)
您的问题很可能与您执行脚本的方式有关。如果使用-Command
参数运行脚本,请执行以下操作:
powershell.exe -Command "&{& 'C:\path\to\your.ps1'}"
或者像这样:
cmd /c echo C:\path\to\your.ps1 | powershell.exe -Command -
如果发生错误,返回值为1,否则返回0,无论您设置的exitcode是什么。
要让PowerShell返回正确的退出代码,您需要在命令字符串中添加exit $LASTEXITCODE
:
powershell.exe -Command "&{& 'C:\path\to\your.ps1'; exit $LASTEXITCODE}"
或使用-File
参数调用脚本:
powershell.exe -File "C:\path\to\your.ps1"