michaelrigart / ansible-role-interfaces

An ansible role for configuring different network interfaces
GNU General Public License v3.0
83 stars 61 forks source link

Fix dummy interface regex #159

Closed priteau closed 6 months ago

priteau commented 6 months ago

The dummy* regex would match dumm and dummy, which worked because it is used with the Ansible match test, which succeeds if it finds the pattern at the beginning of the string.

Use the proper regex for correctness.