chrony-2.3-10.1<>,ZO\ø/=„XL_:|Gz`2!:|<^Ƚ xɺSlCN"%e_EsF$d \&ɵ/tYs>luSߴ2>!;%h?8i )m UxpZU~@x_%Wzڰ$%͘yݼgM^sǝD3zeVYŇ}z\sX4\j E8TݭV#1iNgKwnәR>BO$?Od    A|   G`+ + b+ + d+ +  (+ +!+""+#\#'$('&'('?8'H9':(=A>A?B@B FBGB(+HB+IC+XCYC\C+]D+^FbHPcHdIeIfIlIuI+vJL wM(+xM+yN!zOCchrony2.310.1System Clock Synchronization Client and ServerChrony is an implementation of the Network Time Protocol (NTP). It can synchronize the system clock with NTP servers, reference clocks (e.g. a GPS receiver), and manual input using wristwatch and keyboard. It can also operate as an NTPv4 (RFC 5905) server and peer to provide a time service to other computers in the network. Chrony consists of two programs: chronyd and chronyc. Chronyd is a daemon which runs in the background on the system. It obtains measurements of the system clock’s offset relative to time servers on other systems via the network and adjusts the system time accordingly. For isolated systems, the user can periodically enter the correct time by hand (using chronyc). In either case, chronyd determines the rate at which the computer gains or loses time, and compensates for this. Chronyd can act as either a client or a server. Chronyc provides a user interface to chronyd for monitoring its performance and configuring various settings. It can do so while running on the same computer as the chronyd instance it is controlling or a different computer.\build31 ;PopenSUSE Leap 42.3openSUSEGPL-2.0http://bugs.opensuse.orgProductivity/Networking/Otherhttp://chrony.tuxfamily.org/linuxx86_64/usr/sbin/groupadd -r chrony >/dev/null 2>&1 || : /usr/sbin/useradd -g chrony -s /bin/false -r -c "Chrony Daemon" -d "/var/lib/chrony" chrony >/dev/null 2>&1 || : # START BIG SYSTEMD test -n "$FIRST_ARG" || FIRST_ARG="$1" # disable migration if initial install under systemd [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$FIRST_ARG" -eq 1 ]; then for service in chronyd.service chrony-wait.service ; do sysv_service="${service%.*}" touch "/var/lib/systemd/migrated/$sysv_service" || : done else for service in chronyd.service chrony-wait.service ; do # The tag file might have been left by a preceding # update (see bsc#1059627) rm -f "/run/rpm-chrony-update-$service-new-in-upgrade" if [ ! -e "/usr/lib/systemd/system/$service" ]; then touch "/run/rpm-chrony-update-$service-new-in-upgrade" fi done for service in chronyd.service chrony-wait.service ; do sysv_service="${service%.*}" if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --save $sysv_service || : done fi PNAME=chronyd SUBPNAME= TEMPLATE_DIR=/var/adm/fillup-templates SYSC_TEMPLATE=$TEMPLATE_DIR/sysconfig.$PNAME$SUBPNAME SD_NAME="" if [ -x /bin/fillup ] ; then if [ -f $SYSC_TEMPLATE ] ; then echo "Updating /etc/sysconfig/$SD_NAME$PNAME..." mkdir -p /etc/sysconfig/$SD_NAME touch /etc/sysconfig/$SD_NAME$PNAME /bin/fillup -q /etc/sysconfig/$SD_NAME$PNAME $SYSC_TEMPLATE fi else echo "ERROR: fillup not found. This should not happen. Please compare" echo "/etc/sysconfig/$PNAME and $TEMPLATE_DIR/sysconfig.$PNAME and" echo "update by hand." fi ALL_ARGS=(--info-dir="/usr/share/info" "/usr/share/info/chrony.info.gz") NUM_ARGS=${#ALL_ARGS[@]} if test -x /sbin/install-info ; then if test -e "${ALL_ARGS[$((NUM_ARGS-1))]}" ; then /sbin/install-info "${ALL_ARGS[@]}" fi fi ; test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" -a -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -eq 1 ]; then if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl preset chronyd.service chrony-wait.service || : fi elif [ "$FIRST_ARG" -gt 1 ]; then for service in chronyd.service chrony-wait.service ; do if [ ! -e "/run/rpm-chrony-update-$service-new-in-upgrade" ]; then continue fi rm -f "/run/rpm-chrony-update-$service-new-in-upgrade" if [ ! -x /usr/bin/systemctl ]; then continue fi /usr/bin/systemctl preset "$service" || : done for service in chronyd.service chrony-wait.service ; do sysv_service=${service%.*} if [ -e /var/lib/systemd/migrated/$sysv_service ]; then continue fi if [ ! -x /usr/sbin/systemd-sysv-convert ]; then continue fi /usr/sbin/systemd-sysv-convert --apply $sysv_service || : touch /var/lib/systemd/migrated/$sysv_service || : done fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -eq 0 -a -x /usr/bin/systemctl ]; then # Package removal, not upgrade /usr/bin/systemctl --no-reload disable chronyd.service chrony-wait.service || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_STOP_ON_REMOVAL" && . /etc/sysconfig/services test "$DISABLE_STOP_ON_REMOVAL" = yes -o \ "$DISABLE_STOP_ON_REMOVAL" = 1 && exit 0 /usr/bin/systemctl stop chronyd.service chrony-wait.service ) || : fi ALL_ARGS=(--info-dir="/usr/share/info" "/usr/share/info/chrony.info.gz") NUM_ARGS=${#ALL_ARGS[@]} if test -x /sbin/install-info ; then if ! test -e "${ALL_ARGS[$((NUM_ARGS-1))]}" ; then /sbin/install-info --quiet --delete "${ALL_ARGS[@]}" fi ; fi ; test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -ge 1 ]; then # Package upgrade, not uninstall if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_RESTART_ON_UPDATE" && . /etc/sysconfig/services test "$DISABLE_RESTART_ON_UPDATE" = yes -o \ "$DISABLE_RESTART_ON_UPDATE" = 1 && exit 0 /usr/bin/systemctl try-restart chronyd.service chrony-wait.service ) || : fi else # package uninstall for service in chronyd.service chrony-wait.service ; do sysv_service="${service%.*}" rm -f "/var/lib/systemd/migrated/$sysv_service" || : done if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi fi*pFCGcP;t2F#A 큠AA큤큤A큤A큤A聠AV#RV#RV#R\_\_VVg>\X\`\_VVg>VV^V#R\X\`\`\`VV^\V#RV-V#RV#R\_\^\XV#RV#RV#R\XV#R\XV#RV-\X\_\_\_\_\_\_\_\_\_298b7f611078aa0176aad58e936c7b0dd7ee357045e57d683dc2d7a69f12f5acba6bb05c50e03f6b5ab54a2b7914800df4bb836f6410c2bb7ad45def620386d6bde29aacbc2e48e29937a69375c8c00d8239af79098e575665da3b2f85b77683007a3bd2dcf3b25ad90c99f3a199f04bd1eb373469a1b0e6b830d78d4bc8722222a08ed1a03ba39abcc306b860894b10285022e437ff3be7b79607929f492aac0535a78e83fbcc57b2ba8465802c570dfca8a03ee2fa3f5adcf7cf7633fecae20897dc36a20da24b45ce79a4513459f5751419260aa954499f7abaabaa882bbe7e68fe21b5b8c5d2fcbe719ab1d22f47d2a3060521bb77dfe44da3e24f921675055798a7907e2ba65df403b5ec94d997603813dcb7d58415bc75479fd09dbc5f66b9e81f7e1f01868719191d233105d0285022e437ff3be7b79607929f492aac935b3133da4dd8a4ff8d8bcecfac2ddb5d29f7cefeffe28aafdf017fa8fb51dc9274a08a0f44bd941eb62dc7db423527ba6bb05c50e03f6b5ab54a2b7914800dbde29aacbc2e48e29937a69375c8c00d298b7f611078aa0176aad58e936c7b0d2e62ce2f77c2f963d674ad18fb09b03a0535a78e83fbcc57b2ba8465802c570daacbcc9d0187b30f394714115e5cd96aecad85c092035c5f8448297ac8d476326c4f15c6ddbf6a00153605a5b2664191b11d72a4ac5115f906e0c8d511930244f500de123d845382b662e1862fa5c1e1d41d8cd98f00b204e9800998ecf8427ed41d8cd98f00b204e9800998ecf8427eserviceservice@@rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootchronychronychronychronyrootchronychronyrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootchronychronychronychronychrony-2.3-10.1.src.rpmchronychrony(x86-64)config(chrony)ntp-daemon@ @@@@@@@@@@@@@@@@@@   /bin/bash/bin/sh/bin/sh/bin/sh/bin/sh/bin/sh/usr/sbin/groupadd/usr/sbin/useraddconfig(chrony)coreutilsdiffutilsfillupgrepinfolibc.so.6()(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.15)(64bit)libc.so.6(GLIBC_2.17)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.3)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libcap.so.2()(64bit)libedit.so.0()(64bit)libfreebl3.so()(64bit)libfreebl3.so(NSSRAWHASH_3.12.3)(64bit)libm.so.6()(64bit)libm.so.6(GLIBC_2.2.5)(64bit)libpthread.so.0()(64bit)libpthread.so.0(GLIBC_2.2.5)(64bit)libseccomp.so.2()(64bit)logrotaterpmlib(CompressedFileNames)rpmlib(PayloadFilesHavePrefix)systemdsystemdsystemdsystemdrpmlib(PayloadIsLzma)2.3-10.13.0.4-14.0-14.4.6-14.11.2\+@\@W4W W@W@WVVŲ@VT@VV@VV@S 4@S 4@QA@PN@Reinhard Max Martin Pluskal mpluskal@suse.commeissner@suse.commpluskal@suse.commpluskal@suse.commpost@suse.commpluskal@suse.commrueckert@suse.demrueckert@suse.demrueckert@suse.demrueckert@suse.demrueckert@suse.demrueckert@suse.dezaitor@opensuse.orgmrdocs@opensuse.orgaj@suse.de- Fix ordering and dependencies of chronyd.service, so that it is started after name resolution is up (bsc#1129914). - Add chrony-service-ordering.patch - Comment out the pool statement in chrony.conf if _not_ building for openSUSE. (bsc#1063704).- Make sure to generate correct sysconfig file (boo#1117147)- Provide ntp-daemon (bsc#973981)- chrony-fix-open.patch: make sure _open and _close are initialized in open()/close() override, as libfreebl3 also calls from the the ELF constructor. FATE#319508 - enable mozilla-nss- Use correct license - Drop hardcoded dependency on libseccomp, it is detected during build- Undo reference to chrony-dnssrv@.service in %pre, %preun, %post, and %postun as it would lead to error. - Change conditions for libseccom, we can use any version on SLE-12 x86_64- Removed %if for distributions that aren't building chrony. - Renamed chrony-2.2_logrotate.patch to chrony-logrotate.patch since the patch is not particularly version-dependent. - Added clknetsim for "make check" processing. - Added Buildrequires for gcc-c++ and timezone for building clknetsim and running "make check". - Changed Buildrequires and Requires to specify the minimum level of libseccomp needed to build on s390x and ppc64le. - Removed "-Recommends: timedatex" since I couldn't find any instance of it anywhere in the build service. - Modified the description to use some of the information from the chrony web site. - Added chrony-include-termios.patch so that it will build on ppc64le. - Added make-105-ntpauth-more-reliable.patch so that "make check" will not report a non-failure as a failure. - Added --without-nss to ./configure to avoid "interruption code 0x2003B in chronyd" errors. - Changed the symbolic links for rcchronyd and rcchronyd-wait to point to the actual location of the service command, not the symlink in /sbin. - Added reference to chrony-dnssrv@.service in %pre, %preun, %post, and %postun.- Cleanup spec file with spec-cleaner - Prepare for submission to Factory (see fate#319508)- update to 2.3 - Enhancements - Add support for NTP and command response rate limiting - Add support for dropping root privileges on Mac OS X, FreeBSD, Solaris - Add require and trust options for source selection - Enable logchange by default (1 second threshold) - Set RTC on Mac OS X with rtcsync directive - Allow binding to NTP port after dropping root privileges on NetBSD - Drop CAP_NET_BIND_SERVICE capability on Linux when NTP port is disabled - Resolve names in separate process when seccomp filter is enabled - Replace old records in client log when memory limit is reached - Don't reveal local time and synchronisation state in client packets - Don't keep client sockets open for longer than necessary - Ignore poll in KoD RATE packets as ntpd doesn't always set it correctly - Warn when using keys shorter than 80 bits - Add keygen command to generate random keys easily - Add serverstats command to report NTP and command packet statistics - Bug fixes - Fix clock correction after making step on Mac OS X - Fix building on Solaris - refreshed patches to apply cleanly again: chrony-2.2_logrotate.patch chrony-config.patch chrony-service-helper.patch- update to 2.2.1 Restrict authentication of NTP server/peer to specified key (CVE-2016-1567)- silence groupadd/useradd call and drop the shell from the user.- update to 2.2 see /usr/share/doc/packages/chrony/NEWS - sync with fedora spec and add systemd support - refreshed chrony-config.patch to apply cleanly again - added chrony-2.2_logrotate.patch: add missing su option as we no longer have the daemon run as root. - added chrony-service-helper.patch: imported from fedora with a changed path for moving from libexecdir to datadir - only use syscall filters on 12.3 and newer - move helper from libexecdir to datadir- clean up build section - the configure script can actually import CC/CFLAGS from the environment. no need to break any CFLAGS it might set in the configure script. - remove unneeded prefix from the make calls. - enable building the binaries with PIE/relro now- Update to version 1.29.1: * Modify chronyc protocol to prevent amplification attacks (CVE-2014-0021) (incompatible with previous protocol version, chronyc supports both) - Additional changes from 1.29 * Fix crash when processing crafted commands (CVE-2012-4502) (possible with IP addresses allowed by cmdallow and localhost) * Don't send uninitialized data in SUBNETS_ACCESSED and CLIENT_ACCESSES replies (CVE-2012-4503) (not used by chronyc) * Drop support for SUBNETS_ACCESSED and CLIENT_ACCESSES commands - Additional changes from 1.28 * Combine sources to improve accuracy * Make config and command parser strict * Add -a option to chronyc to authenticate automatically * Add -R option to ignore initstepslew and makestep directives * Add generatecommandkey, minsamples, maxsamples and user directives * Improve compatibility with NTPv1 and NTPv2 clients * Create sockets only in selected family with -4/-6 option * Treat address bind errors as non-fatal * Extend tracking log * Accept float values as initstepslew threshold * Allow hostnames in offline, online and burst commands * Fix and improve peer polling * Fix crash in config parsing with too many servers * Fix crash with duplicated initstepslew address * Fix delta calculation with extreme frequency offsets * Set local stratum correctly * Remove unnecessary adjtimex calls * Set paths in documentation by configure * Update chrony.spec - Updated chrony-config.patch: - lots of config values were fixed upstream already - key file patching is unnecessary- Update to version 1.27: + Added support for stronger authentication keys via NSS or libtomcrypt library. + Extended tracking, sources and activity reports printed by chronyc. + The daemon now waits in foreground until it is fully initialized. + Other bug fixes and improvements. - Add mozilla-nss-devel & pkg-config BuildRequires, new optional dependencys.-run spec-cleaner on the spec file, fix license and remove cruft- Update to version 1.26: * Added compatibility with Linux 3.0 and later * Fixed replying on multihomed IPv6 hosts * Other minor bug fixes and improvements - Cleanup package a bit./bin/sh/bin/sh/bin/sh/bin/shbuild31 1554977219  !"#$%&'()*+2.3-10.12.3-10.12.3-10.1 20-chronychrony.confchrony.keysdhcpdhclient.dchrony.shchronychronyc50-chronyd.listchrony-dnssrv@.servicechrony-dnssrv@.timerchrony-wait.servicechronyd.servicechronydrcchrony-waitrcchronydchrony-helperchronyCOPYINGFAQNEWSREADMEchrony.txtchrony.txt.gzexampleschrony-wait.servicechrony.conf.example1chrony.conf.example2chrony.conf.example3chrony.keys.examplechrony.logrotatechrony.nm-dispatcherchrony.specchronyd.servicechrony.info.gzchronyc.1.gzchrony.conf.5.gzchronyd.8.gzsysconfig.chronydchronydriftrtcchrony/etc/NetworkManager/dispatcher.d//etc//etc/dhcp//etc/dhcp/dhclient.d//etc/logrotate.d//usr/bin//usr/lib/systemd/ntp-units.d//usr/lib/systemd/system//usr/sbin//usr/share//usr/share/doc/packages//usr/share/doc/packages/chrony//usr/share/doc/packages/chrony/examples//usr/share/info//usr/share/man/man1//usr/share/man/man5//usr/share/man/man8//var/adm/fillup-templates//var/lib//var/lib/chrony//var/log/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Maintenance:10023/openSUSE_Leap_42.3_Update/04d137ca5288ba56ce15a430d2ab247a-chrony.openSUSE_Leap_42.3_Updatedrpmlzma5x86_64-suse-linux   POSIX shell script, ASCII text executableASCII textdirectoryBourne-Again shell script, ASCII text executableELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linux 3.0.0, BuildID[sha1]=c76d3480cc938d908f7d107697fe459244d6d8a3, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linux 3.0.0, BuildID[sha1]=c582ade530d3c84b6816f9d7e5b6361cf56f09f1, strippedUTF-8 Unicode textC++ source, ASCII textC++ source, ASCII text (gzip compressed data, max compression, from Unix)troff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)empty RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR]ղ! kAi?]"k%DG+C|6 .<]QOACXHAVܙpI?l*[sSO.}fbp'?&_nSQYeȋq&"Y{W@(M0wkN{R Q:q @E4Mc2H7Ȏ5!m. "Ӌ&D@ _z[` xwIfVgc YU鲢")P?25 ZmD X(dofN#TY5>$=z" +@|{`PHD]$isdt3ջZPpRۀLN0ΘB5 9oa݀^rgAB}/B} d9 v˕şހ_ܠdd ؼ$M'#^Tjjg 8$aɔE ,m]ruTLy0s6aNJ飚K&\*!WCɕ*IJ7û`$ljIEBlg.QK*)YMV1KmnԷwәN`2{U$E6[r $14mDS:W/uo<3f^^ϓ؄1WckT WGtR.$jo[4BQ~LgBjgvz9,̓f68/(nQKnQWjg.5Nzf@Z:hBty4ĖuW{bMv-U[ٔDCщ$> =C;0OԢ٤z=vԊV9C]eF^ ح5]9jvOxB|#qCcaO$sT;B.`T' )|kIH"r~$J2fwRVCU wu㹭F^{ZJZɟ<+0Y89V4eU# 2"ݝ ."&)wcw*2rQT;Q;Вk;x2nS]|$`PN :=Xnc1z(vb HCU|UZ<]:!rNz"Qdċ{uP2EEQ,`?@X`W{4O1G?z'+H..qA7\g3+7Pr.FxXhc+~ޥ698IAfJ$sH\;j{aTSnSW[G&" $Ctpc P5 pSY\Uް yBB