/usr/lib/dracut/modules.d/35network-legacy
NameSizeModeActions
dhclient-script.sh93740755editdlrm
dhclient.conf3030644editdlrm
ifup.sh155430755editdlrm
kill-dhclient.sh2520755editdlrm
module-setup.sh28800755editdlrm
net-genrules.sh41090755editdlrm
parse-bond.sh20070755editdlrm
parse-bridge.sh11240755editdlrm
parse-ibft.sh2830755editdlrm
parse-ifname.sh5520755editdlrm
parse-ip-opts.sh49500755editdlrm
parse-team.sh16000755editdlrm
parse-vlan.sh6620755editdlrm
Edit: /usr/lib/dracut/modules.d/35network-legacy/parse-ifname.sh (552B)
#!/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