archboot/lib/initcpio/install/arch_netcfg
2009-05-24 15:47:17 +02:00

33 lines
807 B
Text

# Created by Tobias Powalowski <tpowa@archlinux.org>
install ()
{
MODULES=""
BINARIES="netcfg-auto-wireless netcfg-menu netcfg2 netcfg"
FILES=""
SCRIPT=""
for i in /usr/lib/network/*; do
[ -f $i ] && add_file $i
done
for i in /usr/lib/network/connections/*; do
add_file $i
done
add_dir "/var/run/network/interfaces"
add_dir "/var/run/network/profiles"
for i in /etc/network.d/examples/*; do
add_file $i
done
add_file "/etc/rc.d/net-profiles"
add_file "/etc/rc.d/net-rename"
add_file "/etc/rc.d/net-auto"
add_file "/usr/share/archboot/netcfg/etc/iftab" "/etc/iftab"
# fix licenses
add_file "/usr/share/licenses/netcfg/LICENSE"
}
help ()
{
cat<<HELPEOF
This hook includes the netcfg on an arch boot image.
HELPEOF
}