Is there any way to define more matches with OR?
I would like to create a class with a mac address check, like
class "fixVms" {
match if substring (hardware, 1, 4) = 00:15:5d:aa;
}
but I would like to add another macs to it, like
subclass "fixVms" 1:00:15:5d:bb:00:00;
I tried to add
match pick-first-value (option dhcp-client-identifier, hardware);
to the class body but it did not work. The 2 things separetly does work.