Add script 'check_remote_websites.sh'.

This commit is contained in:
2017-09-27 03:04:07 +02:00
parent fb75b474ba
commit 1bde6f91bc
3 changed files with 308 additions and 2 deletions

View File

@ -0,0 +1,58 @@
#---------------------------------------
#-----------------------------
# Settings for script check_remote_websites.sh
#-----------------------------
#---------------------------------------
# - WEBSITES_TO_CHECK
# -
# - Contains a list of websites, whichn will be checked
# -
# - blank seperated list of URLs
# -
# - Example: WEBSITES_TO_CHECK="
# - https://webmail.oopen.de
# - https://webmail.initiativenserver.de
# - https://webmail.interventionistische-linke.org
# - http://www.oopen.de"
# -
WEBSITES_TO_CHECK=""
# - TIME_OUT
# -
# - Timeout for curl request of each website
# -
# - Defaults to: TIME_OUT=240
# -
#TIME_OUT=240
# ---
# - E-Mail settings for sending script messages
# ---
# - company
# -
# - Example: company="O.OPEN"
# -
company=""
# - sender_address
# -
# - Defaults to: sender_address="root@$(hostname -f)"
# -
#sender_address="check_websites@$(hostname -f)"
# - content_type
# -
# - Defaults to: content_type='Content-Type: text/plain;\n charset="utf-8"'
# -
#content_type='Content-Type: text/plain;\n charset="utf-8"'
# - alert_email_addresses
# -
# - blank separated list of e-mail addresses
#
# - Example: alert_email_addresses="ckubu@oopen.de axel@warenform.net"
# -
alert_email_addresses=""