From 85a9183b61234cbdbd3ca896536bced0cfb5923e Mon Sep 17 00:00:00 2001 From: link2xt Date: Tue, 19 Dec 2023 14:31:22 +0000 Subject: [PATCH] Do not call `show_dns` with `run` args --- cmdeploy/src/cmdeploy/cmdeploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmdeploy/src/cmdeploy/cmdeploy.py b/cmdeploy/src/cmdeploy/cmdeploy.py index 5f3e33bd..c814f488 100644 --- a/cmdeploy/src/cmdeploy/cmdeploy.py +++ b/cmdeploy/src/cmdeploy/cmdeploy.py @@ -69,7 +69,7 @@ def run_cmd(args, out): cmd = f"{pyinf} --ssh-user root {args.config.mail_domain} {deploy_path}" out.check_call(cmd, env=env) - show_dns(args, out) + print("Deploy completed, call `cmdeploy dns` next.") def dns_cmd_options(parser):