/usr/lib/dracut/modules.d/35network-legacy
NameSizeModeActions
dhclient-script.sh100940755editdlrm
dhclient.conf4500644editdlrm
dhcp-multi.sh46370755editdlrm
ifup.sh184500755editdlrm
kill-dhclient.sh2740755editdlrm
module-setup.sh32250755editdlrm
net-genrules.sh43920755editdlrm
parse-bond.sh21790755editdlrm
parse-bridge.sh11820755editdlrm
parse-ibft.sh2810755editdlrm
parse-ifname.sh5590755editdlrm
parse-ip-opts.sh51270755editdlrm
parse-team.sh17660755editdlrm
parse-vlan.sh7130755editdlrm
Edit: /usr/lib/dracut/modules.d/35network-legacy/parse-ifname.sh (559B)
#!/usr/bin/sh # # Format: # ifname=: # # Note letters in the macaddress must be lowercase! # # Examples: # ifname=eth0:4a:3f:4c:04:f8:d7 # # Note when using ifname= to get persistent interface names, you must specify # an ifname= argument for each interface used in an ip= or fcoe= argument # check if there are any ifname parameters if ! getarg ifname= > /dev/null; then return fi command -v parse_ifname_opts > /dev/null || . /lib/net-lib.sh # Check ifname= lines for p in $(getargs ifname=); do parse_ifname_opts "$p" done