chrony-3.2-lp150.11.2<>,\`Ӹ/=„&D8 jNbg~;p+ʇe=7! :_qB H(mu?ɦQf>z9 #7w%xg{H67`r!组L1gnN^+$֠aq9*jlD ޝֽ_uE Qb 흔ȤRt0.ˏkRI1.?hgϲ[5ɓ`]]-1=D5ѐnƖQv{x Am/$>Fj?jtd    G " H$**  * t* * !* "*"*#*$`$*%(%X$%$($()8)9):+=]s>]{?]@]F]G]*H^P*I^*X_$Y_4\_d*]` *^bbccddeee fe#le%ue8*ve wh8*xh*yi#zjj$j(j.jpCchrony3.2lp150.11.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.\`cloud120openSUSE Leap 15.0openSUSEGPL-2.0-onlyhttp://bugs.opensuse.orgProductivity/Networking/Otherhttp://chrony.tuxfamily.org/linuxx86_64getent 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 fiK'9Ov s63E'FC;<v 큠A큠AA큤큤A큤A큤A큤A聠AYsYs\ZYs\Z\ZVVg>\Z\Z\ZVVg>VV^Ys\Z\Z\Z\ZVV^\`YYsYs\ZYsYsYs\ZYs\ZYsY\ZK3\`Ys\Z\Z\Z\Z\Z\Z\Z9edd4a6490d43440da046535e8378894490fa0827a2b7101004fb776a0bd70922d9439f94321c72d74adee8c8f0e454f50ec8ec780abdf048737e80df63d5320557e7dd4a2a6fbec8646236b15a2241325e396d9f87c99f8638929e2952f6321192842f5fac9dcc657f081a13313a3a401dbf81fb640fddf5734ccb5ced4edfeca42afdb2a9c00ef4ae8279a49467160ba65fd835fbd1cbe7f90ec554c215ef7d6c3294d73911d1da1d2e915613c8aa48e513c8fef2511c2afa9140a73f05b498ce6899d05799a0b7528e3d9e09b32f00ec4a0697ba37437cd4a4b795b87a86d9f1716fac9b090416b9c36f573e0d2ee748475437249b2cf08a206776a3d3307df830c5bcde1a55d78f19016f65b927adb9cbeb165181a56fb35fdfce8f6f5aebb54465a8aeb4f911e811720e355530af0ae77b94c68a456953a960bed792b576862cd8231ea31a21101e0b78f55a23c24d513c05dc058afac73b19ba243ee90bf02a16e0f44e3816798b453ff872507b41e6d4888d119929d73d20cdf998ccd41cb02599fdaf91d8635cbb52c89996528a0530d5e73dd11083be2917183782286c28e944b8be9d1b062d4d37554353a5561ba4d9d9243dbd30975eb95a727e74a4562c077f6cb88d7ee720dd2eeddcdccb502d430647f0f7b244e66e24f1ac26f1f27b67c7de08ec46e8cef114a890852fc6d3e0bccadfb4edbf02c03a917d0bb54465a8aeb4f911e811720e355530af0ae77b94c68a456953a960bed792b57d837d18c293b538ce86735aee7eb0bdcbfe4231f827b8aa78ee39b6f461bfe1c659939fb6522d9fe71bcef216e8e3bb591180547b0d9120dbfbfd63eab2905ac6383972aedd3c5f3a64b056758c003de80cdedca722e866bb283c5cebf21bbc0557e7dd4a2a6fbec8646236b15a2241325e396d9f87c99f8638929e2952f6321ca42afdb2a9c00ef4ae8279a49467160ba65fd835fbd1cbe7f90ec554c215ef79edd4a6490d43440da046535e8378894490fa0827a2b7101004fb776a0bd709291e2229d91704a63ca337366c382240c06d8075f997803d08ba7e2ce09c8921f6862cd8231ea31a21101e0b78f55a23c24d513c05dc058afac73b19ba243ee900dfc45a76c0def207902a38dbf7f8584836b3065a0fb64a98bd75aceed4079dcab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c610e364f61c736d5dbefce168fbf199b1d765c1cc78f38890ee37a77d42757f2a5abad9e0fa9065ed5f1ba1ddcd729018682bfa75dab6b6d4b5d3e75890da5b87a2294dbae481865e0c95d284da73a914a2bc88cb5daf3de6ce0b93e5193ab173serviceservice@@rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootchronychronychronychronyrootchronyrootchronyrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootchronychronychronychronychrony-3.2-lp150.11.2.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)coreutilsdiffutilsfillupgreplibc.so.6()(64bit)libc.so.6(GLIBC_2.12)(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.25)(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)logrotaterpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.2-lp150.11.23.0.4-14.6.0-14.0-15.2-14.14.1\+@\@Z3@ZZZ}@Z@Y@Y+@Y@YX@X|@X|X=mWXW4W W@W@WVVŲ@VT@VV@VV@S 4@S 4@QA@PN@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.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- 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- 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/shcloud120 1555062995  !"#$%&'()*3.2-lp150.11.23.2-lp150.11.23.2-lp150.11.2 20-chronychrony.confchrony.dchrony.keysdhcpdhclient.dchrony.shchronychronyc50-chronyd.listchrony-dnssrv@.servicechrony-dnssrv@.timerchrony-wait.servicechronyd.servicechronydrcchrony-waitrcchronydchrony-helperchronyFAQNEWSREADMEexampleschrony-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/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/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:10026/openSUSE_Leap_15.0_Update/7eed468c2ac956badcff48fd56e19e04-chrony.openSUSE_Leap_15.0_Updatedrpmxz5x86_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/l, for GNU/Linux 3.2.0, BuildID[sha1]=34586972a08392873d0789a80c1c05feecb201e5, strippedELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/l, for GNU/Linux 3.2.0, BuildID[sha1]=a087ab251802eeea6f93b5f94ab412a6cbdca287, strippedUTF-8 Unicode texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)empty"RRRRRRRRRRRRRRRRR RRRRRRRRRRRRRRRRR Ru]S%afautf-8dfaf8db83e75a7ec35baa668589ed17d753ab8c1385c12d61fc6a9e5d3dde11f?7zXZ !t/6"b]"k%]+C&Sd)?]^g9T&-|r\&{H˜pxC_=Tڹ*9Ny[ T&V<*a ֏( F<_Jκw+bZZvGv,CB|7ܹ$A^1eIIRmk4IndB󘛳)96g˶/ & 'L 0_#p*N:_uF| }PCO> ȫH u5LJJ!*h0`6a<^39 ^7;|RRq0N$Z+,]Ҟ!_GwQ?xcWb*|k  AHDoP"gYR{Кi., t\W-ku4HJБdE,[?ț2xHXWnH Nm~ d q(4u؉_?siƱ#KIHE3tܠ]mnVpBg=p jœy£,Θ>%E{+::$5IØCz>Rjl h4YR|=no4^"T)Y9eϝ}BMgMwKܮu&̇b hoK2-ǘ EBP exsӒW^[^7\_g_q W.` /pt®YZ(${^b  'SإpAѨXH7l-~X?[1KQ}G#a''UDg&[sV^Uo[=m T1{P(;wǴmdOx6iNgZ.ų'f;;дR~I@PVj9m {Z|4 %so\[$D#^**Y?9 ϤLQP;?2k NCMUkU+Zf˄#K3`ݯ]N~`KUOQ-ZxRzNH݋?}3`W㘛]k o/7]ĒXx3*p_(GLʻ9UrjuY Znn؉ߢQU~3Yge(S @㾍!l\"G+$,&=BjMސ@5='istf0+bx1Bd.WZJƙXc`.ʦ'H?j,@K-a,:EYU%+D1tR]6fgL~+4cu9#$iSs7mFeL<2ozmRZ+mh`:='ܻe$cԙD &1>6~4aQlArl8{%0P8;:dP O7d@)VZWzZD=ЬI~>|Xqxa4J' ͬʕ24~8C7a xtzt+r>;'߶atq͢FtKmإ>vb1鑆]+:{k1e"fu+pqm&۸7G"!8MqcIF(|iNK$q;&x^IJtZ#JtCq4WZ:as#0w  -ESm~Vϼ!B!o/s)kƒGɜ>k\HE(ʆO"Ig횟upPr9F}@M@{Y ܠ΁ 4JW6S?fH!6|[Ha0#|o v] @*7u^Q㙛Y4V x}oP~Դgs#zQM4tyk8Xw^VaF|k=i2#^]4[=%ZqYvt0DވA zJrƋ~\{+`#W4&s_˾ɋc3 KqݘT\.ϡ[X Os0"MC- gfk[ZG3Vc1$]#+ ̸XS{AbѶxx !Ӵ m &:cBC-f2*84s wpڨi1/&Ak01Iq&Z. uYu8$$ n[SnG^ZS.@L" cqߘAFv}H\sc ƽ1U; dm Y)ՍGl%xB/֬?h\-z˾ UׂD+Ω)th]7=XVA`!sv0%Sw*2Z!}LqFHF]hSrXԳgxaVQM7n'j4\7X@,[%IOD)' Ujɷ;B/㓌  ܵSם8B͂rEV.sKNfrT3aTTbWՆbnHs@\[ږjL)'9x༊݉G,GZ %3<\A$cfP7 6$޳ u*WđG1vQiCw8cٝZ@s|z0S %wGG3>knnm$ҝ / QDyɚj C1S8<✧ A3pGk3$~ٱr(&D) HpJMM5MWRС@UF);orHgK]0*W!4@Ke}OQociFka)GTNfeїT[z-\NM$#M"%T=@BwaŽ\G`7LQgm4bdDB ;?XPqOC>Fp{C܂ob,!,ݴY?>= ͨ'n;ϣϫ ^NM /0Qnp @8lT+`yT^dC8DNXM|GMȴ}K/I'-8$zHբrKz`W jǯ%\ӿ{7^3t,2Sq 4r7݃|B=3~ _L} N.cЊgf5q9h|m=%ȦbxkfuQdnE'MiQBO=2]j/rrE'2@t~)V*M$)q;.ꩋ8O"j UTj BGg}We/~srOQMY4HSJI f93/&O Ϳ&ĬBM˸d9 8aեDޮD3oy0RC[B%KQК8\-8jiFCP=a`h,G w*9#52OV\R(e!D|.pN=w2bq1>yMB@A `DIfe&c ddx,K-tV+{U/2jd|p:$p^7Z <M!/b#ut rf·*Ks؉K@ehOLOnk-Hr=,k6HI"ٿ$ V(2juP|JMVZ)_Gft_x0˄+w E`F<1+?B.eqKy[$2~<>9O#* :M`sρN[}xZ 3> [#+/47juDeH@a T%o_[6%)(N&vC ^DVV'?nrn,\uRެw%E?2'9n!Zcr8I5Z}?c_|/ HPC+[5l> #u^8kϜQӉ;H#Z%N6NB1|Fp[ uj*X/Xa9Lұw͸'3MgQ537$WrlUJ[A3 r㐁,B >U 0WOrkwDokDE| KX&7_1y E˱+:uo~h.CdʐM-eN7ґeOm5d)cފߊi @$<[79կWUTWقwcT"&VQ.RG> /m~՟i8\ϻ{rPYjTRlc ?23) ip,iF""eKN^ 9`8`j(Kn2k6|_դI<6S"+rhmA$Ow͋%ٍE]}0ċ>X@ Mj,9Zuc*U}v{Lj5xMJ"cXa|ȳCҕ ,YH0զ$)>=rEM%_t]|hC ~NK&vsw6hv\~w[k}xCPJQɳA,,s lG`q4AA|'e WGg,4 $X y ' URzn +I#S>F@FF_C|}Y%YL^9i13 xu 呍33cJĞ =~ *AF 9|mu$Jv&֔r~˔8 ʫS#chnpyȜ^ȧF#C86ixsP)y6[de T9 sPီ;hEI ,;ӷQ="ާ>/A9APé5)r;' T^䳘V>RM[ =T!;ݍn&xF/gMz;'혰'߻=#ķHUH/2 \N3`d1Hbtn#՝g 4P۟%_=Rlb9-MÐrփuﬣdwA/B&_]Cuƿo'äUGyT'oć5]_T, J4ʽ쥞i,I1&U)D _Z=)a--PIKO&P`&xMXDmNd=ɾ,;5vFUi|kᅮ*\ 9Y`**-]v;O&A-(=8AR<(oНS }N)b&h}>|{ǚ#C:H\ʅђcU.N-:6p) T_д"t8L i4Vثzu#~YH8ZiLWeB. D7bd ! K"Ua;@sIkS[jC3}oBqC!SȢ7EMDy0 T@4&`գB~מxx_$Vŵ=r*ߺ0#-.]f<W)|Gr[Egsq9G3A8qzIZm-L6FN؇Ae!"TFg&U$lӤVڠFڈ0;a(TXhBf.$' >! ,3)nc@?rB)jbu0>!PCKzQ=tx y>nÿ́B֍4sI.=d˄z4jf[7ҜBYcɕBydr? NHUqJk;eޠ`Zp͊Mj=EvL!ʬE7+I6C3ʿNXK$"zwI%/i_uJD4h9b5ȋWf4]{s(pAEP ;/&$k$u$y*z/J@:W?~[o,\.G7eJ%+f*}\K31cOpisA~[.GZPqWotmm:RРLd:{ߜi6PoO≡P϶Hli4Os)G֬\;O!j"X^I7^&x:~8VD0|oF(a=Hu4e4UEA[P%Rdx1`teSS. ROwQS|[t2HGH2V4$U Q {{ىqUl0NX)~ GGesݧE=n{/MUuFgX-HwbJ/eD5CJۍ&?jR$&hDخ׵sQ+*ޝ>FuEm`% YZ