From 5d4229307c95a7b0db4ef886186d42dbde4b490b Mon Sep 17 00:00:00 2001 From: Jan Danielzick Date: Sat, 14 Aug 2021 00:47:29 +0200 Subject: [PATCH] added timestamp to the default Discord message --- goip_dyndns_updater.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/goip_dyndns_updater.sh b/goip_dyndns_updater.sh index 7b22152..ccd4cfb 100644 --- a/goip_dyndns_updater.sh +++ b/goip_dyndns_updater.sh @@ -12,8 +12,8 @@ PASSWORD="ur goip password" DOMAIN="urdomain.goip.it" # Discord webhook DISCORD_WEBHOOK_URL="" # leave empty to disable -DISCORD_WEBHOOK_MESSAGE_UPDATE="DNS entry for $DOMAIN has been updated successfully." -DISCORD_WEBHOOK_MESSAGE_FAIL="DNS entry update for $DOMAIN failed." +DISCORD_WEBHOOK_MESSAGE_UPDATE="DNS entry for $DOMAIN has been updated successfully. ($(date))" +DISCORD_WEBHOOK_MESSAGE_FAIL="DNS entry update for $DOMAIN failed. ($(date))" ################################################################################ # END OF CONFIGURATION