Skip to content

Commit 7a087b1

Browse files
authored
[IoT] Update the IoT command module first run extension awareness message to the accurate, non-deprecated modern Id azure-iot (#13097)
* Update __init__.py * Update __init__.py Remove unneeded term.
1 parent 2343260 commit 7a087b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/azure-cli/azure/cli/command_modules/iot/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
def handler(ctx, **kwargs):
1515
cmd = kwargs.get('command', None)
1616
if cmd and cmd.startswith('iot'):
17-
if not extension_exists('azure-cli-iot-ext'):
17+
if not extension_exists('azure-iot'):
1818
ran_before = ctx.config.getboolean('iot', 'first_run', fallback=False)
1919
if not ran_before:
2020
extension_text = """
21-
Comprehensive IoT data-plane functionality is available in the Azure IoT CLI Extension.
21+
Comprehensive IoT functionality is available in the Azure IoT CLI Extension.
2222
23-
To install the extension, run: "az extension add --name azure-cli-iot-ext"
23+
To install the extension, run: "az extension add --name azure-iot"
2424
2525
For more info and install guide go to: https://github.com/Azure/azure-iot-cli-extension
2626
"""

0 commit comments

Comments
 (0)