From 66b6a1adf8ca44e7c5654d6465d18618abc1d663 Mon Sep 17 00:00:00 2001 From: rootzoll Date: Tue, 18 May 2021 15:41:28 -0500 Subject: [PATCH] #2302 change restart info --- home.admin/config.scripts/blitz.subscriptions.letsencrypt.py | 2 +- home.admin/config.scripts/blitz.subscriptions.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/home.admin/config.scripts/blitz.subscriptions.letsencrypt.py b/home.admin/config.scripts/blitz.subscriptions.letsencrypt.py index 25d81af11..44b2147b2 100755 --- a/home.admin/config.scripts/blitz.subscriptions.letsencrypt.py +++ b/home.admin/config.scripts/blitz.subscriptions.letsencrypt.py @@ -613,7 +613,7 @@ This looks not like a valid IP. # restart certain services to update urls if "SPHINX" in serviceName: - print("# restarting Sphinx Relay to pickup new public url (please wait) ...") + print("# restarting services to pickup new public url (please wait) ...") os.system("sudo systemctl restart sphinxrelay") time.sleep(8) diff --git a/home.admin/config.scripts/blitz.subscriptions.py b/home.admin/config.scripts/blitz.subscriptions.py index 8792bfc7e..9ddc8a03f 100755 --- a/home.admin/config.scripts/blitz.subscriptions.py +++ b/home.admin/config.scripts/blitz.subscriptions.py @@ -210,7 +210,7 @@ The following additional information is available: time.sleep(3) # trigger restart of relevant services so they can pickup new environment - print("# restarting Sphinx Relay to pickup new public url (please wait) ...") + print("# restarting services to pickup new public url (please wait) ...") os.system("sudo systemctl restart sphinxrelay 2>/dev/null") time.sleep(8) @@ -416,7 +416,7 @@ def main(): # action after possibly new created bride if service_name == SERVICE_SPHINX: - print("# restarting Sphinx Relay to pickup new public url (please wait) ...") + print("# restarting services to pickup new public url (please wait) ...") os.system("sudo systemctl restart sphinxrelay") time.sleep(8)