archboot/usr/lib/initcpio/install/arch_xl2tpd
2013-07-22 17:57:18 +02:00

18 lines
297 B
Bash

#!/usr/bin/env bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
apps="pfc xl2tpd xl2tpd-control"
for i in $apps; do
add_binary "$i"
done
add_full_dir "/etc/xl2tpd"
}
help ()
{
cat<<HELPEOF
This hook includes xl2tpd on an arch boot image.
HELPEOF
}