From 82dfe50578dac1d86951ff32edb0b8b3912a8df7 Mon Sep 17 00:00:00 2001 From: Joe LeVeque Date: Sun, 19 Jul 2020 13:40:19 -0700 Subject: [PATCH] [sonic-installer] Update group name for 'verify-next-image' subcommand (#995) Root group name was changed from `cli` to `sonic_installer` in https://github.com/Azure/sonic-utilities/pull/983. However, `verify-next-image` subcommand was being added in an already-open PR https://github.com/Azure/sonic-utilities/pull/979/ at the time. It did not get updated before merge. This aligns it with the new group name. --- sonic_installer/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonic_installer/main.py b/sonic_installer/main.py index 8197e1206984..8f016037f789 100644 --- a/sonic_installer/main.py +++ b/sonic_installer/main.py @@ -607,7 +607,7 @@ def rollback_docker(container_name): click.echo('Done') # verify the next image -@cli.command('verify-next-image') +@sonic_installer.command('verify-next-image') def verify_next_image(): """ Verify the next image for reboot""" bootloader = get_bootloader()