chrony-3.2-lp151.9.12.2<>,y_ĸ/=„Сkuߍgk"&8b0&BAN9Y2~H=T 'G/%u֭?*)|qq`p':siDI%nAA1ZowUV.H@JP^$}qDrž:A8$4Lc3T5 R–0p^0=ndiJWcfV.7߮*Zp]Pp_ K5 qH@`A,p%G \~`zB0pq>Id<?d,d    I ' M,++ .+ + 0+ !+ "+"+#+$$+%P%%(((`8(h9(:+ =V>V?V@VFVGW+HW+IXl+XXYX\X+]Y+^[b]mc^d^e^f^l^u^+v_x wa+xb+ycTzcccccccd(Cchrony3.2lp151.9.12.2System 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._obs-power9-07 yopenSUSE Leap 15.1openSUSEGPL-2.0-onlyhttp://bugs.opensuse.orgProductivity/Networking/Otherhttp://chrony.tuxfamily.org/linuxppc64legetent group chrony >/dev/null || groupadd -r chrony getent passwd chrony >/dev/null || useradd -r -g chrony -d "/var/lib/chrony" -s /bin/false -c "Chrony Daemon" chrony 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 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= SYSC_TEMPLATE=/usr/share/fillup-templates/sysconfig.$PNAME$SUBPNAME # If template not in new /usr/share/fillup-templates, fallback to old TEMPLATE_DIR if [ ! -f $SYSC_TEMPLATE ] ; then TEMPLATE_DIR=/var/adm/fillup-templates SYSC_TEMPLATE=$TEMPLATE_DIR/sysconfig.$PNAME$SUBPNAME fi 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 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 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 % HOv s63E%FC;<v 큠A큠AA큤A큤A큤A큤A큤A聠AYsYs_~WYs_~W_~W^:_~M_~X_~W^:_~W^:VV^Ys_~M_~X_~X_~X_YYsYs_~MYsYsYs_~MYs_~MYsY_~MK3_Ys_~W_~W_~W_~W_~W_~W_~W9edd4a6490d43440da046535e8378894490fa0827a2b7101004fb776a0bd709244844f78620488af06de8ceb5456446d37a84d8f5ab2edfc29b9f0193ef5f4c1557e7dd4a2a6fbec8646236b15a2241325e396d9f87c99f8638929e2952f6321f0e1c9019ebfc4c90bd35ceb1ce2096fec58a3cde88d9ae9e9516e42dcb30a2dca42afdb2a9c00ef4ae8279a49467160ba65fd835fbd1cbe7f90ec554c215ef784ae1d578793f61cfc71cf4d7148e25fe66627e28aa6b09f5c17cc270efda9f97abd42ac314ff1857c3c036139f5cccce749ef1d386b8bf06bd9c64ada928e458ce6899d05799a0b7528e3d9e09b32f00ec4a0697ba37437cd4a4b795b87a86d107740517c66beb57602ee50708df7b97d96a14531fca2a30b2a3c0ee18b7931df830c5bcde1a55d78f19016f65b927adb9cbeb165181a56fb35fdfce8f6f5aebb54465a8aeb4f911e811720e355530af0ae77b94c68a456953a960bed792b57f2e7812864e2bf7326f8be1134a0c664e3bd8ec4607423da8a1db99eb3d393449ad63a9300bba13621463db7d8cf1b895f3847ea84dc25c26387d075e4e80d3e86c28e944b8be9d1b062d4d37554353a5561ba4d9d9243dbd30975eb95a727e74a4562c077f6cb88d7ee720dd2eeddcdccb502d430647f0f7b244e66e24f1ac26f1f27b67c7de08ec46e8cef114a890852fc6d3e0bccadfb4edbf02c03a917d0bb54465a8aeb4f911e811720e355530af0ae77b94c68a456953a960bed792b57d837d18c293b538ce86735aee7eb0bdcbfe4231f827b8aa78ee39b6f461bfe1c659939fb6522d9fe71bcef216e8e3bb591180547b0d9120dbfbfd63eab2905ac6383972aedd3c5f3a64b056758c003de80cdedca722e866bb283c5cebf21bbc0557e7dd4a2a6fbec8646236b15a2241325e396d9f87c99f8638929e2952f6321ca42afdb2a9c00ef4ae8279a49467160ba65fd835fbd1cbe7f90ec554c215ef79edd4a6490d43440da046535e8378894490fa0827a2b7101004fb776a0bd709291e2229d91704a63ca337366c382240c06d8075f997803d08ba7e2ce09c8921ff2e7812864e2bf7326f8be1134a0c664e3bd8ec4607423da8a1db99eb3d393440dfc45a76c0def207902a38dbf7f8584836b3065a0fb64a98bd75aceed4079dcab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c610e364f61c736d5dbefce168fbf199b1d765c1cc78f38890ee37a77d42757f2a5abad9e0fa9065ed5f1ba1ddcd729018682bfa75dab6b6d4b5d3e75890da5b87a2294dbae481865e0c95d284da73a914a2bc88cb5daf3de6ce0b93e5193ab173serviceservice@@rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootchronychronychronychronyrootchronyrootchronyrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootchronychronychronychronychrony-3.2-lp151.9.12.2.src.rpmchronychrony(ppc-64)config(chrony)ntp-daemon@ @@@@@@@@@@@@    /bin/bash/bin/sh/bin/sh/bin/sh/bin/sh/bin/sh/usr/sbin/groupadd/usr/sbin/useraddchrony-poolconfig(chrony)coreutilsdiffutilsfillupgreplibc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libc.so.6(GLIBC_2.25)(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.17)(64bit)libpthread.so.0()(64bit)libpthread.so.0(GLIBC_2.17)(64bit)logrotaterpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.2-lp151.9.12.23.0.4-14.6.0-14.0-15.2-14.14.1_s!^V@^}^@\+@\@Z3@ZZZ}@Z@Y@Y+@Y@YX@X|@X|X=mWXW4W W@W@WVVŲ@VT@VV@VV@Reinhard Max Reinhard Max Reinhard Max Reinhard Max Reinhard Max Martin Pluskal mpost@suse.comkukuk@suse.dekukuk@suse.dempluskal@suse.comrbrown@suse.commpluskal@suse.commpost@suse.commrueckert@suse.dempost@suse.commpost@suse.commpost@suse.commpost@suse.commrueckert@suse.dempluskal@suse.commeissner@suse.commpluskal@suse.commpluskal@suse.commpost@suse.commpluskal@suse.commrueckert@suse.demrueckert@suse.demrueckert@suse.demrueckert@suse.de- Integrate three upstream patches to fix an infinite loop in chronyc (bsc#1171806). * chrony-select-timeout.patch * chrony-gettimeofday.patch * chrony-urandom.patch- Use iburst in the default pool statements to speed up initial synchronisation (bsc#1172113).- Read runtime servers from /var/run/netconfig/chrony.servers to fix bsc#1099272 and bsc#1161119. - Move chrony-helper to /usr/lib/chrony/helper, because there should be no executables in /usr/share. - Add chrony-pool-suse and chrony-pool-openSUSE subpackages that preconfigure chrony to use NTP servers from the respective pools for SUSE and openSUSE (bsc#1156884, SLE-11424). - Add chrony-pool-empty to still allow installing chrony without preconfigured servers.- bsc#1159840: Add chrony-ntp-era-split.patch from upstream to fix "make check" builds made after 2019-12-20. Existing installations do not need to be updated as the bug only affects the test, but not chrony itself.- Fix ordering and dependencies of chronyd.service, so that it is started after name resolution is up (bsc#1129914). - Add chrony-service-ordering.patch- Make sure to generate correct sysconfig file (boo#1117147)- Added /etc/chrony.d/ directory to the package (bsc#1083597) Modifed default chrony.conf to add "include /etc/chrony.d/*"- Use %license instead of %doc [bsc#1082318]- Fix name of fillup template (was never installed before) - Fix Requires for fillup, it's used in post, not pre.- Enable pps support- Replace references to /var/adm/fillup-templates with new %_fillupdir macro (boo#1069468)- Cleanup spec file: * Drop pre systemd support * Run spec-cleaner- Modified the spec file to comment out the pool statement in chrony.conf if _not_ building for openSUSE. (bsc#1063704).- refresh patches to apply cleanly again - chrony-config.patch - chrony-fix-open.patch- Upgraded to version 3.2: Enhancements * Improve stability with NTP sources and reference clocks * Improve stability with hardware timestamping * Improve support for NTP interleaved modes * Control frequency of system clock on macOS 10.13 and later * Set TAI-UTC offset of system clock with leapsectz directive * Minimise data in client requests to improve privacy * Allow transmit-only hardware timestamping * Add support for new timestamping options introduced in Linux 4.13 * Add root delay, root dispersion and maximum error to tracking log * Add mindelay and asymmetry options to server/peer/pool directive * Add extpps option to PHC refclock to timestamp external PPS signal * Add pps option to refclock directive to treat any refclock as PPS * Add width option to refclock directive to filter wrong pulse edges * Add rxfilter option to hwtimestamp directive * Add -x option to disable control of system clock * Add -l option to log to specified file instead of syslog * Allow multiple command-line options to be specified together * Allow starting without root privileges with -Q option * Update seccomp filter for new glibc versions * Dump history on exit by default with dumpdir directive * Use hardening compiler options by default Bug fixes * Don't drop PHC samples with low-resolution system clock * Ignore outliers in PHC tracking, RTC tracking, manual input * Increase polling interval when peer is not responding * Exit with error message when include directive fails * Don't allow slash after hostname in allow/deny directive/command * Try to connect to all addresses in chronyc before giving up - Upgraded clknetsim to version 71dbbc5. - Reworked chrony-fix-open.patch to fit the new version- Upgraded to version 3.1: - Enhancements - Add support for precise cross timestamping of PHC on Linux - Add minpoll, precision, nocrossts options to hwtimestamp directive - Add rawmeasurements option to log directive and modify measurements option to log only valid measurements from synchronised sources - Allow sub-second polling interval with NTP sources - Bug fixes - Fix time smoothing in interleaved mode - Upgraded clknetsim to version ce89a1b. - Reworked the following patches to fit the new versions - chrony-config.patch - chrony-service-helper.patch - chrony-fix-open.patch- Upgraded to version 3.0: - Enhancements - Add support for software and hardware timestamping on Linux - Add support for client/server and symmetric interleaved modes - Add support for MS-SNTP authentication in Samba - Add support for truncated MACs in NTPv4 packets - Estimate and correct for asymmetric network jitter - Increase default minsamples and polltarget to improve stability with very low jitter - Add maxjitter directive to limit source selection by jitter - Add offset option to server/pool/peer directive - Add maxlockage option to refclock directive - Add -t option to chronyd to exit after specified time - Add partial protection against replay attacks on symmetric mode - Don't reset polling interval when switching sources to online state - Allow rate limiting with very short intervals - Improve maximum server throughput on Linux and NetBSD - Remove dump files after start - Add tab-completion to chronyc with libedit/readline - Add ntpdata command to print details about NTP measurements - Allow all source options to be set in add server/peer command - Indicate truncated addresses/hostnames in chronyc output - Print reference IDs as hexadecimal numbers to avoid confusion with IPv4 addresses - Bug fixes - Fix crash with disabled asynchronous name resolving - Upgraded clknetsim to version 6bb6519.- Upgraded to version 2.4.1: - Bug fixes - Fix processing of kernel timestamps on non-Linux systems - Fix crash with smoothtime directive - Fix validation of refclock sample times - Fix parsing of refclock directive- update to 2.4: - Enhancements - Add orphan option to local directive for orphan mode compatible with ntpd - Add distance option to local directive to set activation threshold (1 second by default) - Add maxdrift directive to set maximum allowed drift of system clock - Try to replace NTP sources exceeding maximum distance - Randomise source replacement to avoid getting stuck with bad sources - Randomise selection of sources from pools on start - Ignore reference timestamp as ntpd doesn't always set it correctly - Modify tracking report to use same values as seen by NTP clients - Add -c option to chronyc to write reports in CSV format - Provide detailed manual pages - Bug fixes - Fix SOCK refclock to work correctly when not specified as last refclock - Fix initstepslew and -q/-Q options to accept time from own NTP clients - Fix authentication with keys using 512-bit hash functions - Fix crash on exit when multiple signals are received - Fix conversion of very small floating-point numbers in command packets - Removed features - Drop documentation in Texinfo format - update clknetsim to a5949fe for fixing a testsuite failure: - add IP_PKTINFO socket option - accept environment variables in make - fix building with FORTIFY_SOURCE - fix compiler warning - support multiple SHM refclocks - fix recv functions with new glibc headers - refreshed chrony-fix-open.patch: to apply cleanly after clknetsim update - drop patches: - chrony-include-termios.patch - make-105-ntpauth-more-reliable.patch - drop buildrequires for texinfo and pre requires on the install info packages - no longer use make install-docs: it only installed 0 byte html files.- 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/bin/sh/bin/sh/bin/sh/bin/shobs-power9-07 1603372484  !"#$%&'()*+3.2-lp151.9.12.23.2-lp151.9.12.23.2-lp151.9.12.2 20-chronychrony.confchrony.dchrony.keysdhcpdhclient.dchrony.shchronychronycchronyhelper50-chronyd.listchrony-dnssrv@.servicechrony-dnssrv@.timerchrony-wait.servicechronyd.servicechronydrcchrony-waitrcchronydchronyFAQNEWSREADMEexampleschrony-wait.servicechrony.conf.example1chrony.conf.example2chrony.conf.example3chrony.keys.examplechrony.logrotatechrony.nm-dispatcherchrony.specchronyd.servicesysconfig.chronydchronyCOPYINGchronyc.1.gzchrony.conf.5.gzchronyd.8.gzchronydriftrtcchrony/etc/NetworkManager/dispatcher.d//etc//etc/dhcp//etc/dhcp/dhclient.d//etc/logrotate.d//usr/bin//usr/lib//usr/lib/chrony//usr/lib/systemd/ntp-units.d//usr/lib/systemd/system//usr/sbin//usr/share/doc/packages//usr/share/doc/packages/chrony//usr/share/doc/packages/chrony/examples//usr/share/fillup-templates//usr/share/licenses//usr/share/licenses/chrony//usr/share/man/man1//usr/share/man/man5//usr/share/man/man8//var/lib//var/lib/chrony//var/log/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Maintenance:14663/openSUSE_Leap_15.1_Update_ports/9aa95653391f33d4c7226bf7d9728094-chrony.openSUSE_Leap_15.1_Updatedrpmxz5ppc64le-suse-linux POSIX shell script, ASCII text executableASCII textdirectoryBourne-Again shell script, ASCII text executableELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/l, BuildID[sha1]=ae416b9c0a85395a314ea2a2342a30da2ebdc0f3, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/l, BuildID[sha1]=de15e04792da4a2c33e02885d577e3422a947633, for GNU/Linux 3.10.0, strippedUTF-8 Unicode texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)empty   RRRRRRRRRRRRRRRRRRRRRRR#|T4G'chrony-pool-nonemptyutf-85ae49a30cfcc553df3797adfcc2eecf8b52cf51d80b147c141056b4e66f942a3?p7zXZ !t/%]"k%f+C&Sd'W [DK|a:VVͭfx~D@K"Tw/B b6UN z; wq!=lyg>.oxGh1;r"!gOS/Y6cE­G1>BL,1EL}uVy} vqd9"rcus2/n(j8 ){ ?(# 7hTKDxjpĽ@4:H{좚?ۨ+ F FϜtd~X)m9wܻᩊdpbxs++UBWa]|gȮ|LBxJc|^:Kw_`<LΖGU2 O@  3WXYE}:-#ol-Kj@1Q4_x9^D닧Sb1&c?fMmD8^3~%!VU(UlM01C}=`*rjx7"gR&9].jr ]pfQU"Dڼs!ݵC,Ov]6:Д]2ZSF ^ >* hϠs%^>;QeYI5[-e3a f2#}qe \)>8tcP9r/g qfe}{;Ԗnnri= `'RIZľ" Z =A8f<"DET/ Wͧ8ȋkB\Z- ,sOPzVT]5"!-{<~*)CNWxi:؇WrWGaCr "Ra`5צf7D⠸3E`*s<慟/ ҅ "z]w~Ra|6Gp>1%R/考2ݫx3\ (u}$5[`D ;I n˩[,Ʃ{aL~@J|F5 JrJ w/WLۈhw;6_M{';epy4a{T(m"yV>^P`x3Kj)XNt^f:ʽ v!_}I3{/$Sf? ˦ ȳBHz_o'a(t}\JeABcaj@O% [AWw!YUF1k+OκWxI,Yi x*1ͷSc 6d8G&4wnc eo5g,P.6p&&[GMxz¼HT<>*AfqQjE Nc[XO}P 7quuaQ L^)LM^^1BYG?DxU¤&tm[̼ܶK!2$>\O T7<ɂNNNWANb1\܇&*LlpJz[$b5T\.oq\(\GtzOzЀ=w99i-5|4VO59"֜if`0y UpSڥ0ʗ֯XU{DF3`w8`UCkEU=ok"oӣdhvc(~|{/K gP9e@#?@x?70D'b.@ǭ;!cKK"Bqg2ZUOYbiw9Di䰩ȟ1Uv*1Qi/Qb'iSNB9 εiZPOB}M̛wٷ8P Z'YBl;S4闷E/ih[*+lءlNK2&~s9ӝY*3wk8D VlnL8zqGt찍' I;PP4 '5P=QB@Y({~Ug(|QE˅ʇ?7` G3#J&aR5/2&Q}op(e+P{19ͽmCiUm:U[NHOT.x?+YA$ueemg0bn w!CNTxjM zcV>H%&؞LRX ȬYqW[[skF/pV|D_nBɇ#D0ꠧ^t>!ה/=UeJ @j \G-Dkx` 1V8t8'" vZ.Ucknojv58Oe)Aď7hJ1Qx/awb!lĄ7\vT\Sm!BpA [_cWai+aM.~nZ5![C):.ݱ{L`|SYP(向nt"=V:-͚R8u<~3JXMNMˉ7sfβ*ůLQ?RL3'm~IȮ41Nio1SoEkH^|%g"->4~OdT'͏!iWQO!R!# 1\Y@|+S5+|#zژ8Z01֠{Y4rUB89%r ݒo6(6AK<_*g"L^oQMV>7ga:C[knZL~r>FMs WxjhA .Y":Pp*-r(+V Ҷ<:vxk`!Kh-J YZ