archboot/usr/lib/initcpio/install/arch_xl2tpd
2013-05-22 12:04:13 +02:00

18 lines
289 B
Bash

#!/bin/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
}