Updated alert.ps1

This commit is contained in:
Markus Fleschutz 2020-11-22 09:52:38 +00:00
parent 3bfe5a219d
commit af88cec606

View File

@ -1,13 +1,21 @@
#!/snap/bin/powershell
# Syntax: ./alert.ps1 <message>
# Description: sends the given alert message
# Syntax: ./alert.ps1 [<message>]
# Description: handle and escalate the given alert message
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
echo "ALERT"
param([string]$Message)
if ($Message -eq "" ) {
$URL = read-host "Enter alert message"
}
curl --header "Access-Token: o.PZl5XCp6SBl4F5PpaNXGDfFpUJZKAlEb" --header "Content-Type: application/json" --data-binary '{"type": "note", "title": "ALERT", "body": "Intruder alert"}' --request POST https://api.pushbullet.com/v2/pushes
try {
echo "ALERT: $Message"
exit 0
curl --header "Access-Token: o.PZl5XCp6SBl4F5PpaNXGDfFpUJZKAlEb" --header "Content-Type: application/json" --data-binary '{"type": "note", "title": "ALERT", "body": "$Message"}' --request POST https://api.pushbullet.com/v2/pushes
exit 0
} catch { Write-Error $Error[0] }
exit 1