Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 09 Nov 2025 15:52:33 +0000
From:      bugzilla-noreply@freebsd.org
To:        bugs@FreeBSD.org
Subject:   =?UTF-8?B?W0J1ZyAyOTA5MTZdIEpJQiBzY3JpcHQgc2hvdWxkIGFsbG93IA==?= =?UTF-8?B?4oCcLeKAnCBjaGFyYWN0ZXIgaW4gaW50ZXJmYWNlIG5hbWVy?=
Message-ID:  <bug-290916-227@https.bugs.freebsd.org/bugzilla/>

index | next in thread | raw e-mail

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=290916

            Bug ID: 290916
           Summary: JIB script should allow “-“ character in interface
                    namer
           Product: Base System
           Version: 14.3-RELEASE
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Many People
          Priority: ---
         Component: misc
          Assignee: bugs@FreeBSD.org
          Reporter: tschetter.victor@gmail.com

Currently, we can run “jib addm test_jail vtnet0” and it will add the epairs
“e0a_test_jail, e0b_test_jail” to vtnet0

We cannot, however, run “jib addm test-jail vtnet0” due to the following line
in the jib script. “      [ "${name:-x}" = "${name#*[!0-9a-zA-Z_]}" -a $# -gt 1
] ||”

This can easily be changed to “ [ "${name:-x}" = "${name#*[!0-9a-zA-Z-_]}" -a
$# -gt 1 ] ||” as I tested and it successfully added the epairs. 

Am I missing something?

-- 
You are receiving this mail because:
You are the assignee for the bug.

home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-290916-227>