archboot/usr/lib/initcpio/install/arch_netctl
2013-05-22 11:36:00 +02:00

20 lines
383 B
Bash

#!/bin/bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
apps="netctl-auto wifi-menu netctl"
for i in $apps; do
add_binary "$i"
done
add_full_dir "/usr/lib/network/"
add_full_dir "/etc/netctl/"
add_file "/etc/ifplugd/netctl.action"
}
help ()
{
cat<<HELPEOF
This hook includes the netctl package on an arch boot image.
HELPEOF
}