From 645ad5dd3d8ff7747c0c55485fb25086729efd7c Mon Sep 17 00:00:00 2001 From: Stephen Kiely Date: Wed, 14 Aug 2024 22:19:53 -0500 Subject: [PATCH 1/2] Correct the project_slug --- .cookiecutter.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.cookiecutter.json b/.cookiecutter.json index 43d18ad..38bb860 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -7,7 +7,8 @@ "app_name": "nautobot_plugin_nornir", "verbose_name": "Nautobot Nornir Plugin", "app_slug": "nautobot-plugin-nornir", - "project_slug": "nautobot-plugin-nornir", + "_comment": "app_slug should match the folder structure, but project_slug should match the repo name.", + "project_slug": "nautobot-app-nornir", "repo_url": "https://github.com/nautobot/nautobot-app-nornir", "base_url": "plugin-nornir", "min_nautobot_version": "2.0.0", From 2f7a9dea97898244198c914ba98e41768b29b5a5 Mon Sep 17 00:00:00 2001 From: Stephen Kiely Date: Thu, 15 Aug 2024 20:42:38 -0500 Subject: [PATCH 2/2] Correct Spelling in FAQ --- docs/user/faq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user/faq.md b/docs/user/faq.md index 2226f4d..4754316 100644 --- a/docs/user/faq.md +++ b/docs/user/faq.md @@ -14,7 +14,7 @@ f"manufacturer__{device.device_type.manufacturer.name}", _Why is the plugin installed as nautobot_plugin_nornir and not nautobot_nornir?_ -There is already a repository called `nornir-nautbot` and in order to avoid the confusion of both a `nornir-nautobot` and `nautobot-nornir`, the word `plugin` was left in the name. While it is clear that this will still remain confusing, it was deemed the lesser of two evils. +There is already a repository called `nornir-nautobot` and in order to avoid the confusion of both a `nornir-nautobot` and `nautobot-nornir`, the word `plugin` was left in the name. While it is clear that this will still remain confusing, it was deemed the lesser of two evils. _What is the difference between `nautobot_plugin_nornir` and `nornir_settings`? Why not just flatten?_