archboot/usr/lib/initcpio/install/arch_vpnc

21 lines
344 B
Text
Raw Normal View History

#!/usr/bin/env bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
2013-05-22 11:47:57 +02:00
apps="pcf2vpnc vpnc vpnc-disconnect"
2012-05-27 17:12:28 +02:00
for i in $apps; do
add_binary "$i"
done
2012-08-16 07:59:56 +02:00
add_file "/etc/vpnc/default.conf"
add_file "/etc/vpnc/vpnc-script"
}
help ()
{
cat<<HELPEOF
This hook includes vpnc on an arch boot image.
HELPEOF
}