Skip to content
Snippets Groups Projects
Commit 9923f252 authored by nimrod's avatar nimrod
Browse files

Add a check for library.shore.co.il.

parent ff2dadfc
No related branches found
No related tags found
No related merge requests found
Pipeline #3970 passed
...@@ -6,6 +6,7 @@ locals { ...@@ -6,6 +6,7 @@ locals {
"gitlab", "gitlab",
"imap", "imap",
"kodi", "kodi",
"library",
"mta_sts", "mta_sts",
"myip", "myip",
"nextcloud", "nextcloud",
......
"""Check the Transmission web service."""
from utils import website_handler
URLS = [
{"url": "http://library.shore.co.il/", "codes": [301]},
{"url": "https://library.shore.co.il/", "codes": [401]},
]
handler = website_handler(URLS)
if __name__ == "__main__":
handler("event", "context")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment