archboot/usr/lib/initcpio/install/arch_tz

27 lines
582 B
Text
Raw Normal View History

#!/usr/bin/env bash
2008-10-20 22:39:25 +02:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
2008-10-20 22:39:25 +02:00
{
2013-05-22 11:46:20 +02:00
add_binary "hwclock"
add_binary "date"
add_binary "ntpdate"
add_binary "ntpd"
2013-05-08 16:56:34 +02:00
add_file "/etc/ntp.conf"
2009-05-08 08:05:45 +02:00
for i in $(find /usr/share/zoneinfo ! -type d); do
add_file $i
done
2013-05-08 08:29:30 +02:00
add_dir "/var/lib/ntp"
chown ntp:root "$BUILDROOT/var/lib/ntp"
2009-05-24 15:47:17 +02:00
add_file "/usr/share/archboot/tz/tz" "/usr/bin/tz"
2009-05-08 08:05:45 +02:00
# fix licenses
2011-05-09 14:28:33 +02:00
add_file "/usr/share/licenses/ntp/LICENSE"
2008-10-20 22:39:25 +02:00
}
help ()
{
cat<<HELPEOF
This hook includes the timezone data on an arch boot image.
HELPEOF
}