18 lines
653 B
Bash
Executable File
18 lines
653 B
Bash
Executable File
#!/bin/bash
|
|
dracut_install ip dhclient hostname brctl
|
|
inst "$moddir/ifup" "/sbin/ifup"
|
|
inst "$moddir/netroot" "/sbin/netroot"
|
|
inst "$moddir/dhclient-script" "/sbin/dhclient-script"
|
|
inst "$moddir/dhclient.conf" "/etc/dhclient.conf"
|
|
inst_hook pre-udev 60 "$moddir/net-genrules.sh"
|
|
inst_hook cmdline 91 "$moddir/dhcp-root.sh"
|
|
inst_hook cmdline 99 "$moddir/parse-ip-opts.sh"
|
|
inst_hook cmdline 98 "$moddir/parse-bridge.sh"
|
|
inst_hook pre-pivot 10 "$moddir/kill-dhclient.sh"
|
|
|
|
# TODO ifcfg config style is redhat specific, this should probably
|
|
# go into its own module at one time
|
|
inst_hook pre-pivot 20 "$moddir/write-ifcfg.sh"
|
|
|
|
mkdir -p "${initdir}/var/run"
|