From 96fb6c39f4671e1aaaaace8b648e9ee5a970640d Mon Sep 17 00:00:00 2001 From: a-kenji Date: Mon, 12 May 2025 14:55:34 +0200 Subject: [PATCH] clan/vars: Fix vars help hyperlink --- pkgs/clan-cli/clan_cli/vars/cli.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/clan-cli/clan_cli/vars/cli.py b/pkgs/clan-cli/clan_cli/vars/cli.py index 75d3ff562..dc2b99095 100644 --- a/pkgs/clan-cli/clan_cli/vars/cli.py +++ b/pkgs/clan-cli/clan_cli/vars/cli.py @@ -93,7 +93,7 @@ Examples: Will list non-secret vars for the specified machine. -For more detailed information, visit: {help_hyperlink("secrets", "https://docs.clan.lol/getting-started/secrets")} +For more detailed information, visit: {help_hyperlink("vars", "https://docs.clan.lol/manual/vars-backend/")} """ ), formatter_class=argparse.RawTextHelpFormatter, @@ -112,7 +112,7 @@ Examples: $ clan vars get my-server zerotier/vpn-ip Will get the var for the specified machine. -For more detailed information, visit: {help_hyperlink("secrets", "https://docs.clan.lol/getting-started/secrets")} +For more detailed information, visit: {help_hyperlink("vars", "https://docs.clan.lol/manual/vars-backend/")} """ ), formatter_class=argparse.RawTextHelpFormatter, @@ -131,7 +131,7 @@ Examples: $ clan vars set my-server zerotier/vpn-ip Will set the var for the specified machine. -For more detailed information, visit: {help_hyperlink("secrets", "https://docs.clan.lol/getting-started/secrets")} +For more detailed information, visit: {help_hyperlink("vars", "https://docs.clan.lol/manual/vars-backend/")} """ ), formatter_class=argparse.RawTextHelpFormatter, @@ -171,7 +171,7 @@ Examples: This is especially useful for resetting certain passwords while leaving the rest of the vars for a machine in place. -For more detailed information, visit: {help_hyperlink("secrets", "https://docs.clan.lol/getting-started/secrets")} +For more detailed information, visit: {help_hyperlink("vars", "https://docs.clan.lol/manual/vars-backend/")} """ ), formatter_class=argparse.RawTextHelpFormatter,