archboot/usr/lib/initcpio/install/arch_ppp

23 lines
512 B
Text
Raw Normal View History

2012-05-27 12:06:40 +02:00
#!/bin/bash
2007-02-22 23:46:50 +01:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
2007-02-22 23:46:50 +01:00
{
apps="/usr/bin/poff /usr/bin/pon /usr/sbin/chat /usr/sbin/plog /usr/sbin/pppd /usr/sbin/pppdump \
/usr/sbin/pppoe-discovery /usr/sbin/pppstats"
2012-05-27 12:06:40 +02:00
for i in $apps; do
add_binary "$i"
done
2010-02-21 17:29:28 +01:00
add_full_dir "/usr/lib/pppd"
2012-08-15 22:35:48 +02:00
add_full_dir "/etc/ppp"
2009-05-08 08:05:45 +02:00
# fix license files
add_file "/usr/share/licenses/libpcap/LICENSE"
2007-02-22 23:46:50 +01:00
}
help ()
{
cat<<HELPEOF
This hook includes ppp on an arch boot image.
HELPEOF
}