archboot/install/arch_net
2008-03-22 18:45:08 +01:00

24 lines
633 B
Text

# Created by Tobias Powalowski <tpowa@archlinux.org>
install ()
{
MODULES=" $(checked_modules "/drivers/net/") "
BINARIES="ping ping6 route nslookup telnet ssh"
FILES=""
SCRIPT=""
add_file "/sbin/dhcpcd"
add_file "/sbin/ifenslave"
add_file "/usr/sbin/brctl"
add_file "/etc/rc.d/network"
add_file "/etc/archboot/net/etc/conf.d/dhcpcd" "/etc/conf.d/dhcpcd"
add_file "/etc/archboot/net/etc/conf.d/bonding" "/etc/conf.d/bonding"
add_file "/etc/archboot/net/etc/conf.d/bridges" "/etc/conf.d/bridges"
}
help ()
{
cat<<HELPEOF
This hook includes the network on an arch boot image.
HELPEOF
}