chiark / gitweb /
rule_generator/write_net_rules: prevent interface to be named "eth"
[elogind.git] / extras / rule_generator / write_net_rules
index 644fbcecbae847565cc4ee0e9cb470a686687e72..437979241fbf0b920aeb809af12a7508f331b953 100644 (file)
@@ -128,6 +128,8 @@ else
        # if a rule using the current name already exists, find a new name
        if interface_name_taken; then
                INTERFACE="$basename$(find_next_available "$basename[0-9]*")"
+               # prevent INTERFACE from being "eth" instead of "eth0"
+               [ "$INTERFACE" = "${INTERFACE%%[ \[\]0-9]*}" ] && INTERFACE=${INTERFACE}0
                echo "INTERFACE_NEW=$INTERFACE"
        fi
 fi