Skip to content

Commit bbb1801

Browse files
phlogistonjohnmergify[bot]
authored andcommitted
schema: improve wording in interfaces description field
Thanks to @anoopcs9 for pointing out some potentially confusing wording in the previous patches adding interfaces options include_pattern & exclude_pattern. Change 'system interfaces' to 'network interfaces'. Signed-off-by: John Mulligan <[email protected]>
1 parent 522df0c commit bbb1801

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

sambacc/schema/conf-v0.schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,11 +262,11 @@
262262
"properties": {
263263
"include_pattern": {
264264
"type": "string",
265-
"description": "A regular expression that must match for a system interface\nto be included in the AD DC interfaces list.\n"
265+
"description": "A regular expression that must match for a network interface\nto be included in the AD DC interfaces list.\n"
266266
},
267267
"exclude_pattern": {
268268
"type": "string",
269-
"description": "A regular expression that must not match for a system interface\nto be included in the AD DC interfaces list.\n"
269+
"description": "A regular expression that must not match for a network interface\nto be included in the AD DC interfaces list.\n"
270270
}
271271
}
272272
}

sambacc/schema/conf-v0.schema.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,12 +255,12 @@ properties:
255255
include_pattern:
256256
type: string
257257
description: |
258-
A regular expression that must match for a system interface
258+
A regular expression that must match for a network interface
259259
to be included in the AD DC interfaces list.
260260
exclude_pattern:
261261
type: string
262262
description: |
263-
A regular expression that must not match for a system interface
263+
A regular expression that must not match for a network interface
264264
to be included in the AD DC interfaces list.
265265
required:
266266
- realm

sambacc/schema/conf_v0_schema.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,15 +281,15 @@
281281
"type": "string",
282282
"description": (
283283
"A regular expression that must match for"
284-
" a system interface\nto be included in"
284+
" a network interface\nto be included in"
285285
" the AD DC interfaces list.\n"
286286
),
287287
},
288288
"exclude_pattern": {
289289
"type": "string",
290290
"description": (
291291
"A regular expression that must not match"
292-
" for a system interface\nto be included"
292+
" for a network interface\nto be included"
293293
" in the AD DC interfaces list.\n"
294294
),
295295
},

0 commit comments

Comments
 (0)