mirror of
https://github.com/JanJastrow/.dotfiles.git
synced 2024-11-01 00:54:51 +01:00
Merge branch 'main' of github.com:JanJastrow/.dotfiles
This commit is contained in:
commit
407d693949
@ -102,6 +102,7 @@ function extract () {
|
||||
# Monitor IP/Host and report with Pushover
|
||||
pnotify-online() {
|
||||
local ip_address="$1"
|
||||
echo "Monitoring $ip_address …"
|
||||
|
||||
while true; do
|
||||
if ping -c 1 -W 1 "$ip_address" >/dev/null; then
|
||||
@ -114,6 +115,8 @@ pnotify-online() {
|
||||
|
||||
pnotify-offline() {
|
||||
local ip_address="$1"
|
||||
echo "Monitoring $ip_address …"
|
||||
|
||||
while true; do
|
||||
if ! ping -c 1 -W 1 "$ip_address" >/dev/null; then
|
||||
echo "$1 is offline now."
|
||||
|
Loading…
Reference in New Issue
Block a user