Skip to content

Commit 571efbf

Browse files
author
Rares POP
committed
Fix packages Tags field
Tags are a list of strings. For some reason they were defined as string before. Signed-off-by: Rares POP <[email protected]>
1 parent e28149b commit 571efbf

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

systems-management/nisysmgmt.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1185,9 +1185,12 @@ definitions:
11851185
description: The name of a package this package suggests. This also contains information about the version of the package.
11861186
example: "ni-systemlink-client-2018.5-realtime-bin (>= 18.5.0)"
11871187
tags:
1188-
type: string
1189-
description: Tags of the package.
1190-
example: "KillBits, Security Update 2013"
1188+
type: array
1189+
description: An array containing tags for the package.
1190+
items:
1191+
type: string
1192+
description: Tag for the package.
1193+
example: ".NET"
11911194
userVisible:
11921195
type: boolean
11931196
description: The installed packages with this attribute set to true are considered to be installed by a user, thus not installed to fulfill some dependency. This is needed input for the calculation of unneeded packages when removing a package.

0 commit comments

Comments
 (0)