milis/talimatname/genel/ntp/talimat

69 lines
1.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Description: NTP, bilgisayar saatlerini bir ağ üzerinden senkronize etmek için tasarlanmış bir protokoldür.
# URL: http://www.ntp.org/
# Packagers: milisarge
# Depends on:
name=ntp
version=4.2.8p5
release=1
source=( http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/$name-4.2/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--bindir=/usr/sbin \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--enable-linuxcaps \
--with-lineeditlibs=readline \
--docdir=/usr/share/doc/$name-$version
make
make DESTDIR=$PKG install
mkdir -p $PKG/var/lib/ntp
install -v -o ntp -g ntp -d $PKG/var/lib/ntp
mkdir -p $PKG/etc
cat > $PKG/etc/ntp.conf << "EOF"
# Europe
server 0.tr.pool.ntp.org
server 1.tr.pool.ntp.org
server 2.tr.pool.ntp.org
server 3.tr.pool.ntp.org
server 0.europe.pool.ntp.org
# Africa
server tock.nml.csir.co.za
# Asia
server 0.asia.pool.ntp.org
# Australia
server 0.oceania.pool.ntp.org
# North America
server 0.north-america.pool.ntp.org
# South America
server 2.south-america.pool.ntp.org
driftfile /var/lib/ntp/ntp.drift
pidfile /var/run/ntpd.pid
# Security session
restrict default limited kod nomodify notrap nopeer noquery
restrict -6 default limited kod nomodify notrap nopeer noquery
restrict 127.0.0.1
restrict ::1
EOF
# service
make DESTDIR=$PKG install
}