From d690c22c067bd58fcba8d2646303c2f2eb66d847 Mon Sep 17 00:00:00 2001 From: missytake Date: Wed, 20 Aug 2025 19:04:38 +0200 Subject: [PATCH] cmdeploy: print echobot link at the end of cmdeploy run --- cmdeploy/src/cmdeploy/cmdeploy.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmdeploy/src/cmdeploy/cmdeploy.py b/cmdeploy/src/cmdeploy/cmdeploy.py index 59187734..ffb6c131 100644 --- a/cmdeploy/src/cmdeploy/cmdeploy.py +++ b/cmdeploy/src/cmdeploy/cmdeploy.py @@ -89,6 +89,8 @@ def run_cmd(args, out): try: retcode = out.check_call(cmd, env=env) if retcode == 0: + print("\nYou can try out the relay by talking to this echo bot: ") + print(sshexec(call=remote.rshell.shell, kwargs=dict(command="cat /var/lib/echobot/invite-link.txt"))) out.green("Deploy completed, call `cmdeploy dns` next.") elif not remote_data["acme_account_url"]: out.red("Deploy completed but letsencrypt not configured")