archboot/lib/initcpio/install/arch_tz
Tobias Powalowski 5faae40d12 'fixed licenses'
2009-05-08 08:05:45 +02:00

22 lines
446 B
Text

# Created by Tobias Powalowski <tpowa@archlinux.org>
install ()
{
MODULES=""
BINARIES="hwclock date ntpdate"
FILES=""
SCRIPT=""
for i in $(find /usr/share/zoneinfo ! -type d); do
add_file $i
done
add_file /usr/share/archboot/tz/tz /usr/bin/tz
# fix licenses
add_file "/usr/share/licenses/ntp/COPYRIGHT"
}
help ()
{
cat<<HELPEOF
This hook includes the timezone data on an arch boot image.
HELPEOF
}