quattor / aii

Automated Installation Infrastructure
www.quattor.org
Apache License 2.0
8 stars 17 forks source link

aii-pxelinux does not accept /dev/enp4s0f0 #261

Closed nowack73 closed 7 years ago

nowack73 commented 7 years ago

/dev/enp4s0f0 is not accepted as ksdevice.

In quattor/aii/pxelinux/schema.pan line 16:

    "ksdevice"  : string with match (SELF, ('^(bootif|link|(eth|seth|em|bond|br|vlan|usb|ib|p\d+p|en(o|(p\d+)?s))\d+(\.\d+)?|enx\p{XDigit}{12})$')) || is_hwaddr (SELF)

With the following line, enp4s0f0 is accepted:

    "ksdevice"  : string with match (SELF, ('^(bootif|link|(eth|seth|em|bond|br|vlan|usb|ib|p\d+p|en(o|(p\d+)?s))\d+(.\d+)?|enx\p{XDigit}{12})$')) || is_hwaddr (SELF)

This problem is related to https://github.com/quattor/configuration-modules-core/issues/1069