Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-ntc-templates for 
openSUSE:Factory checked in at 2026-04-08 17:15:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-ntc-templates (Old)
 and      /work/SRC/openSUSE:Factory/.python-ntc-templates.new.21863 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-ntc-templates"

Wed Apr  8 17:15:00 2026 rev:19 rq:1345020 version:9.1.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-ntc-templates/python-ntc-templates.changes    
    2026-03-09 16:12:25.647617865 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ntc-templates.new.21863/python-ntc-templates.changes
     2026-04-08 17:15:04.842318188 +0200
@@ -1,0 +2,7 @@
+Wed Apr  1 14:50:27 UTC 2026 - Martin Hauke <[email protected]>
+
+- Update to version 9.1.0
+  * Fix nxos sh license usage for nxos 10.
+  * Fix alcatel_sros sh lag when there are lag names.
+
+-------------------------------------------------------------------

Old:
----
  ntc-templates-9.0.0.tar.gz

New:
----
  ntc-templates-9.1.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-ntc-templates.spec ++++++
--- /var/tmp/diff_new_pack.FTRs0x/_old  2026-04-08 17:15:05.602349435 +0200
+++ /var/tmp/diff_new_pack.FTRs0x/_new  2026-04-08 17:15:05.606349600 +0200
@@ -18,7 +18,7 @@
 
 %{?sle15_python_module_pythons}
 Name:           python-ntc-templates
-Version:        9.0.0
+Version:        9.1.0
 Release:        0
 Summary:        Package to return structured data from the output of network 
devices
 License:        Apache-2.0

++++++ ntc-templates-9.0.0.tar.gz -> ntc-templates-9.1.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ntc-templates-9.0.0/docs/admin/release_notes/index.md 
new/ntc-templates-9.1.0/docs/admin/release_notes/index.md
--- old/ntc-templates-9.0.0/docs/admin/release_notes/index.md   2026-02-17 
22:38:38.000000000 +0100
+++ new/ntc-templates-9.1.0/docs/admin/release_notes/index.md   2026-04-01 
02:17:28.000000000 +0200
@@ -4,6 +4,7 @@
 
 | Version | Link |
 | ------- | ---- |
+| v9.1 | [Release Notes](version_9.1.md) |
 | v9.0 | [Release Notes](version_9.0.md) |
 | v8.1 | [Release Notes](version_8.1.md) |
 | v8.0 | [Release Notes](version_8.0.md) |
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ntc-templates-9.0.0/docs/admin/release_notes/version_9.1.md 
new/ntc-templates-9.1.0/docs/admin/release_notes/version_9.1.md
--- old/ntc-templates-9.0.0/docs/admin/release_notes/version_9.1.md     
1970-01-01 01:00:00.000000000 +0100
+++ new/ntc-templates-9.1.0/docs/admin/release_notes/version_9.1.md     
2026-04-01 02:17:28.000000000 +0200
@@ -0,0 +1,8 @@
+# Release Notes v9.2.0
+
+## What's Changed
+
+* Fix nxos sh license usage for nxos 10 (mmilaitis) by @michalis1 in 
https://github.com/networktocode/ntc-templates/pull/2302
+* Fix alcatel_sros sh lag when there are lag names by @mjbear in 
https://github.com/networktocode/ntc-templates/pull/2277
+
+**Full Changelog**: 
https://github.com/networktocode/ntc-templates/compare/v9.0.0...v9.1.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ntc-templates-9.0.0/ntc_templates/templates/alcatel_sros_show_lag.textfsm 
new/ntc-templates-9.1.0/ntc_templates/templates/alcatel_sros_show_lag.textfsm
--- 
old/ntc-templates-9.0.0/ntc_templates/templates/alcatel_sros_show_lag.textfsm   
    2026-02-17 22:38:38.000000000 +0100
+++ 
new/ntc-templates-9.1.0/ntc_templates/templates/alcatel_sros_show_lag.textfsm   
    2026-04-01 02:17:28.000000000 +0200
@@ -5,14 +5,17 @@
 Value THRESHOLD (\d+)
 Value UP_COUNT (\d+)
 Value MC_ACT_STDBY (N/A|active|standby)
+Value LAG_NAME (lag-\S+)
 
 Start
-  ^----------- -> Lag
-
-Lag
-  
^${LAG_ID}\s+${ADM}\s+${OPR}\s+${WEIGHTED}\s+${THRESHOLD}\s+${UP_COUNT}\s+${MC_ACT_STDBY}(\s|$$)
 -> Record
+  ^Lag\s+Data\s*$$
+  ^Lag-id\s+Adm\s+Opr\s+Weighted\s+Threshold\s+Up-Count\s+MC\s+Act/Stdby\s*$$
+  ^\s+name\s*$$
+  ^\d+\s+((up|down)\s+){2} -> Continue.Record
+  
^${LAG_ID}\s+${ADM}\s+${OPR}\s+${WEIGHTED}\s+${THRESHOLD}\s+${UP_COUNT}\s+${MC_ACT_STDBY}\s*$$
+  ^\s+${LAG_NAME}\s*$$
   ^\s*$$
-  ^-----------
-  ^===========
+  ^===+
+  ^---+
   ^Total
   ^. -> Error
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ntc-templates-9.0.0/ntc_templates/templates/cisco_nxos_show_license_usage.textfsm
 
new/ntc-templates-9.1.0/ntc_templates/templates/cisco_nxos_show_license_usage.textfsm
--- 
old/ntc-templates-9.0.0/ntc_templates/templates/cisco_nxos_show_license_usage.textfsm
       2026-02-17 22:38:38.000000000 +0100
+++ 
new/ntc-templates-9.1.0/ntc_templates/templates/cisco_nxos_show_license_usage.textfsm
       2026-04-01 02:17:28.000000000 +0200
@@ -1,12 +1,13 @@
 Value FEATURE (\S+)
 Value INSTALLED (Yes|No)
 Value LICENSE_COUNT (\d+|-)
-Value STATUS (Unused|In\s+use)
+Value STATUS (Unused|In\s+use|IN\s+USE|Not\s+Applicable)
 Value EXPIRY_DATE (\S+|\s*?)
 Value COMMENTS (.+)
 
 Start
   ^Feature\s+Ins\s+Lic\s+Status\s+Expiry\s+Date\s+Comments -> Begin
+  ^License\s+Authorization:\s*$$ -> Version10
   ^\s*$$
   ^. -> Error
 
@@ -16,3 +17,17 @@
   ^-+\s*$$
   ^\s*$$
   ^. -> Error
+
+Version10
+  ^License\s+Authorization:\s*$$
+  ^\s*$$
+  ^\s+Status:\s+${STATUS}$$
+  ^\s+Status:\s+.+$$
+  ^\(${FEATURE}\):$$
+  ^\s+Description:\s+${COMMENTS}$$
+  ^\s+Count:\s+${LICENSE_COUNT}$$
+  ^\s+Version:\s+\S+$$
+  ^\s+Status:\s+${STATUS}$$
+  ^\s+Enforcement\s+Type:\s+.+$$
+  ^\s+License\s+Type:\s+.+$$ -> Record
+  ^. -> Error
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ntc-templates-9.0.0/pyproject.toml 
new/ntc-templates-9.1.0/pyproject.toml
--- old/ntc-templates-9.0.0/pyproject.toml      2026-02-17 22:38:38.000000000 
+0100
+++ new/ntc-templates-9.1.0/pyproject.toml      2026-04-01 02:17:28.000000000 
+0200
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "ntc_templates"
-version = "9.0.0"
+version = "9.1.0"
 description = "TextFSM Templates for Network Devices, and Python wrapper for 
TextFSM's CliTable."
 authors = ["Network to Code <[email protected]>"]
 license = "Apache-2.0"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ntc-templates-9.0.0/tests/alcatel_sros/show_lag/show_lag.yml 
new/ntc-templates-9.1.0/tests/alcatel_sros/show_lag/show_lag.yml
--- old/ntc-templates-9.0.0/tests/alcatel_sros/show_lag/show_lag.yml    
2026-02-17 22:38:38.000000000 +0100
+++ new/ntc-templates-9.1.0/tests/alcatel_sros/show_lag/show_lag.yml    
2026-04-01 02:17:28.000000000 +0200
@@ -1,219 +1,250 @@
 ---
 parsed_sample:
-  - lag_id: "1"
-    adm: "up"
+  - adm: "up"
+    lag_id: "1"
+    lag_name: ""
+    mc_act_stdby: "N/A"
     opr: "up"
-    weighted: "No"
     threshold: "0"
     up_count: "2"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "2"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "2"
-    adm: "up"
     opr: "up"
-    weighted: "No"
     threshold: "0"
     up_count: "2"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "3"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "3"
-    adm: "up"
     opr: "up"
-    weighted: "No"
     threshold: "0"
     up_count: "1"
-    mc_act_stdby: "N/A"
-  - lag_id: "4"
-    adm: "down"
-    opr: "down"
     weighted: "No"
-    threshold: "0"
-    up_count: "0"
+  - adm: "down"
+    lag_id: "4"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "5"
-    adm: "down"
     opr: "down"
-    weighted: "No"
     threshold: "0"
     up_count: "0"
+    weighted: "No"
+  - adm: "down"
+    lag_id: "5"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "10"
-    adm: "down"
     opr: "down"
-    weighted: "No"
     threshold: "0"
     up_count: "0"
+    weighted: "No"
+  - adm: "down"
+    lag_id: "10"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "20"
-    adm: "up"
     opr: "down"
-    weighted: "No"
     threshold: "0"
     up_count: "0"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "20"
+    lag_name: ""
     mc_act_stdby: "standby"
-  - lag_id: "70"
-    adm: "down"
     opr: "down"
-    weighted: "No"
     threshold: "0"
     up_count: "0"
+    weighted: "No"
+  - adm: "down"
+    lag_id: "70"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "80"
-    adm: "up"
     opr: "down"
-    weighted: "No"
     threshold: "0"
     up_count: "0"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "80"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "90"
-    adm: "down"
     opr: "down"
-    weighted: "No"
     threshold: "0"
     up_count: "0"
-    mc_act_stdby: "N/A"
-  - lag_id: "100"
-    adm: "up"
-    opr: "up"
     weighted: "No"
+  - adm: "down"
+    lag_id: "90"
+    lag_name: ""
+    mc_act_stdby: "N/A"
+    opr: "down"
     threshold: "0"
-    up_count: "1"
+    up_count: "0"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "100"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "101"
-    adm: "up"
     opr: "up"
-    weighted: "No"
     threshold: "0"
     up_count: "1"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "101"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "102"
-    adm: "up"
     opr: "up"
-    weighted: "No"
     threshold: "0"
     up_count: "1"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "102"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "103"
-    adm: "up"
     opr: "up"
-    weighted: "No"
     threshold: "0"
     up_count: "1"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "103"
+    lag_name: ""
     mc_act_stdby: "active"
-  - lag_id: "104"
-    adm: "up"
     opr: "up"
-    weighted: "No"
     threshold: "0"
     up_count: "1"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "104"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "105"
-    adm: "up"
     opr: "up"
-    weighted: "No"
     threshold: "0"
     up_count: "1"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "105"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "106"
-    adm: "up"
     opr: "up"
-    weighted: "No"
     threshold: "0"
     up_count: "1"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "106"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "107"
-    adm: "up"
     opr: "up"
-    weighted: "No"
     threshold: "0"
     up_count: "1"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "107"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "108"
-    adm: "up"
     opr: "up"
-    weighted: "No"
     threshold: "0"
     up_count: "1"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "108"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "109"
-    adm: "up"
     opr: "up"
-    weighted: "No"
     threshold: "0"
     up_count: "1"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "109"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "110"
-    adm: "up"
     opr: "up"
-    weighted: "No"
     threshold: "0"
     up_count: "1"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "110"
+    lag_name: ""
     mc_act_stdby: "active"
-  - lag_id: "111"
-    adm: "up"
     opr: "up"
-    weighted: "No"
     threshold: "0"
     up_count: "1"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "111"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "112"
-    adm: "up"
     opr: "up"
-    weighted: "No"
     threshold: "0"
     up_count: "1"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "112"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "114"
-    adm: "up"
     opr: "up"
-    weighted: "No"
     threshold: "0"
     up_count: "1"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "114"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "115"
-    adm: "up"
     opr: "up"
-    weighted: "No"
     threshold: "0"
     up_count: "1"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "115"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "120"
-    adm: "up"
     opr: "up"
+    threshold: "0"
+    up_count: "1"
     weighted: "No"
+  - adm: "up"
+    lag_id: "120"
+    lag_name: ""
+    mc_act_stdby: "N/A"
+    opr: "up"
     threshold: "0"
     up_count: "1"
+    weighted: "No"
+  - adm: "down"
+    lag_id: "124"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "124"
-    adm: "down"
     opr: "down"
-    weighted: "No"
     threshold: "0"
     up_count: "0"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "140"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "140"
-    adm: "up"
     opr: "up"
-    weighted: "No"
     threshold: "0"
     up_count: "1"
+    weighted: "No"
+  - adm: "down"
+    lag_id: "150"
+    lag_name: ""
     mc_act_stdby: "N/A"
-  - lag_id: "150"
-    adm: "down"
     opr: "down"
-    weighted: "No"
     threshold: "0"
     up_count: "0"
-    mc_act_stdby: "N/A"
-  - lag_id: "153"
-    adm: "up"
-    opr: "up"
     weighted: "No"
+  - adm: "up"
+    lag_id: "153"
+    lag_name: ""
+    mc_act_stdby: "active"
+    opr: "up"
     threshold: "0"
     up_count: "1"
-    mc_act_stdby: "active"
-  - lag_id: "180"
-    adm: "down"
-    opr: "down"
     weighted: "No"
+  - adm: "down"
+    lag_id: "180"
+    lag_name: ""
+    mc_act_stdby: "N/A"
+    opr: "down"
     threshold: "0"
     up_count: "0"
-    mc_act_stdby: "N/A"
+    weighted: "No"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ntc-templates-9.0.0/tests/alcatel_sros/show_lag/show_lag_name.raw 
new/ntc-templates-9.1.0/tests/alcatel_sros/show_lag/show_lag_name.raw
--- old/ntc-templates-9.0.0/tests/alcatel_sros/show_lag/show_lag_name.raw       
1970-01-01 01:00:00.000000000 +0100
+++ new/ntc-templates-9.1.0/tests/alcatel_sros/show_lag/show_lag_name.raw       
2026-04-01 02:17:28.000000000 +0200
@@ -0,0 +1,22 @@
+
+===============================================================================
+Lag Data
+===============================================================================
+Lag-id         Adm     Opr     Weighted Threshold Up-Count MC Act/Stdby
+    name                                                   
+-------------------------------------------------------------------------------
+1              up      up      No       0         1        N/A
+    lag-1
+2              up      up      No       0         1        N/A
+    lag-2
+19             up      up      No       0         2        N/A
+    lag-19
+20             down    down    No       0         0        N/A
+    lag-20
+50             down    down    No       0         0        N/A
+    lag-myname
+101            up      up      No       0         1        N/A
+    lag-101
+-------------------------------------------------------------------------------
+Total Lag-ids: 6       Single Chassis: 6        MC Act: 0       MC Stdby: 0
+===============================================================================
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ntc-templates-9.0.0/tests/alcatel_sros/show_lag/show_lag_name.yml 
new/ntc-templates-9.1.0/tests/alcatel_sros/show_lag/show_lag_name.yml
--- old/ntc-templates-9.0.0/tests/alcatel_sros/show_lag/show_lag_name.yml       
1970-01-01 01:00:00.000000000 +0100
+++ new/ntc-templates-9.1.0/tests/alcatel_sros/show_lag/show_lag_name.yml       
2026-04-01 02:17:28.000000000 +0200
@@ -0,0 +1,50 @@
+---
+parsed_sample:
+  - adm: "up"
+    lag_id: "1"
+    lag_name: "lag-1"
+    mc_act_stdby: "N/A"
+    opr: "up"
+    threshold: "0"
+    up_count: "1"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "2"
+    lag_name: "lag-2"
+    mc_act_stdby: "N/A"
+    opr: "up"
+    threshold: "0"
+    up_count: "1"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "19"
+    lag_name: "lag-19"
+    mc_act_stdby: "N/A"
+    opr: "up"
+    threshold: "0"
+    up_count: "2"
+    weighted: "No"
+  - adm: "down"
+    lag_id: "20"
+    lag_name: "lag-20"
+    mc_act_stdby: "N/A"
+    opr: "down"
+    threshold: "0"
+    up_count: "0"
+    weighted: "No"
+  - adm: "down"
+    lag_id: "50"
+    lag_name: "lag-myname"
+    mc_act_stdby: "N/A"
+    opr: "down"
+    threshold: "0"
+    up_count: "0"
+    weighted: "No"
+  - adm: "up"
+    lag_id: "101"
+    lag_name: "lag-101"
+    mc_act_stdby: "N/A"
+    opr: "up"
+    threshold: "0"
+    up_count: "1"
+    weighted: "No"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ntc-templates-9.0.0/tests/cisco_nxos/show_license_usage/cisco_nxos_show_license_usage.yml
 
new/ntc-templates-9.1.0/tests/cisco_nxos/show_license_usage/cisco_nxos_show_license_usage.yml
--- 
old/ntc-templates-9.0.0/tests/cisco_nxos/show_license_usage/cisco_nxos_show_license_usage.yml
       2026-02-17 22:38:38.000000000 +0100
+++ 
new/ntc-templates-9.1.0/tests/cisco_nxos/show_license_usage/cisco_nxos_show_license_usage.yml
       2026-04-01 02:17:28.000000000 +0200
@@ -1,68 +1,68 @@
 ---
 parsed_sample:
-  - feature: "MPLS_PKG"
+  - comments: "Grace 10D 1H"
+    expiry_date: ""
+    feature: "MPLS_PKG"
     installed: "No"
     license_count: "-"
     status: "Unused"
+  - comments: "Grace 20D 6H"
     expiry_date: ""
-    comments: "Grace 10D 1H"
-  - feature: "STORAGE-ENT"
+    feature: "STORAGE-ENT"
     installed: "No"
     license_count: "-"
     status: "Unused"
+  - comments: "-"
     expiry_date: ""
-    comments: "Grace 20D 6H"
-  - feature: "VDC_LICENSES"
+    feature: "VDC_LICENSES"
     installed: "No"
     license_count: "0"
     status: "Unused"
+  - comments: "-"
     expiry_date: ""
-    comments: "-"
-  - feature: "ENTERPRISE_PKG"
+    feature: "ENTERPRISE_PKG"
     installed: "No"
     license_count: "-"
     status: "Unused"
+  - comments: "-"
     expiry_date: ""
-    comments: "-"
-  - feature: "FCOE-N7K-F132XP"
+    feature: "FCOE-N7K-F132XP"
     installed: "No"
     license_count: "0"
     status: "Unused"
+  - comments: "-"
     expiry_date: ""
-    comments: "-"
-  - feature: "FCOE-N7K-F248XP"
+    feature: "FCOE-N7K-F248XP"
     installed: "No"
     license_count: "0"
     status: "Unused"
+  - comments: "Grace 20D 6H"
     expiry_date: ""
-    comments: "-"
-  - feature: "ENHANCED_LAYER2_PKG"
+    feature: "ENHANCED_LAYER2_PKG"
     installed: "No"
     license_count: "-"
     status: "Unused"
+  - comments: "-"
     expiry_date: ""
-    comments: "Grace 20D 6H"
-  - feature: "SCALABLE_SERVICES_PKG"
+    feature: "SCALABLE_SERVICES_PKG"
     installed: "No"
     license_count: "-"
     status: "Unused"
-    expiry_date: ""
-    comments: "-"
-  - feature: "TRANSPORT_SERVICES_PKG"
+  - comments: "-"
+    expiry_date: "Never"
+    feature: "TRANSPORT_SERVICES_PKG"
     installed: "Yes"
     license_count: "-"
     status: "Unused"
+  - comments: "-"
     expiry_date: "Never"
-    comments: "-"
-  - feature: "LAN_ADVANCED_SERVICES_PKG"
+    feature: "LAN_ADVANCED_SERVICES_PKG"
     installed: "Yes"
     license_count: "-"
     status: "Unused"
+  - comments: "-"
     expiry_date: "Never"
-    comments: "-"
-  - feature: "LAN_ENTERPRISE_SERVICES_PKG"
+    feature: "LAN_ENTERPRISE_SERVICES_PKG"
     installed: "Yes"
     license_count: "-"
     status: "In use"
-    expiry_date: "Never"
-    comments: "-"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ntc-templates-9.0.0/tests/cisco_nxos/show_license_usage/cisco_nxos_show_license_usage_ver10.raw
 
new/ntc-templates-9.1.0/tests/cisco_nxos/show_license_usage/cisco_nxos_show_license_usage_ver10.raw
--- 
old/ntc-templates-9.0.0/tests/cisco_nxos/show_license_usage/cisco_nxos_show_license_usage_ver10.raw
 1970-01-01 01:00:00.000000000 +0100
+++ 
new/ntc-templates-9.1.0/tests/cisco_nxos/show_license_usage/cisco_nxos_show_license_usage_ver10.raw
 2026-04-01 02:17:28.000000000 +0200
@@ -0,0 +1,11 @@
+
+License Authorization:
+  Status: Not Applicable
+
+(LAN_ENTERPRISE_SERVICES_PKG):
+  Description: LAN license for Nexus 9300-XF
+  Count: 1
+  Version: 1.0
+  Status: IN USE
+  Enforcement Type: NOT ENFORCED
+  License Type: Generic
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/ntc-templates-9.0.0/tests/cisco_nxos/show_license_usage/cisco_nxos_show_license_usage_ver10.yml
 
new/ntc-templates-9.1.0/tests/cisco_nxos/show_license_usage/cisco_nxos_show_license_usage_ver10.yml
--- 
old/ntc-templates-9.0.0/tests/cisco_nxos/show_license_usage/cisco_nxos_show_license_usage_ver10.yml
 1970-01-01 01:00:00.000000000 +0100
+++ 
new/ntc-templates-9.1.0/tests/cisco_nxos/show_license_usage/cisco_nxos_show_license_usage_ver10.yml
 2026-04-01 02:17:28.000000000 +0200
@@ -0,0 +1,8 @@
+---
+parsed_sample:
+  - comments: "LAN license for Nexus 9300-XF"
+    expiry_date: ""
+    feature: "LAN_ENTERPRISE_SERVICES_PKG"
+    installed: ""
+    license_count: "1"
+    status: "IN USE"

Reply via email to