SUSEConnect-0.3.36-150300.20.6.1<>,cp9|?Iέ ߭偏Ja¾!a#;8c#np\HSbns~'R*U5a*g)] s,-(rK| iFԧr&=, 7~3QmaƖjLGCخnwh W;n/UVf ~lf;S{nH#XՀa-.~FOVҟHkPꔩ坱c}4EW,O̡读 ;)hlzB>mЯ%Lj80>Lud?uTd # ^HLX\u  {s`II I I I *I +8I,\I-I/6/`I01`123(303P(3[83dM94M::MM=b>b?b@bFbGbIHcIIeIXedYe\eI]g I^jbncodp.ep3fp6lp8upLIvqp wrHIxslIytztttttuuuPCSUSEConnect0.3.36150300.20.6.1Utility to register a system with the SUSE Customer CenterThis package provides a command line tool and rubygem library for connecting a client system to the SUSE Customer Center. It will connect the system to your product subscriptions and enable the product repositories/services locally.cs390zp36GSUSE Linux Enterprise 15SUSE LLC LGPL-2.1https://www.suse.com/System/Managementhttps://github.com/SUSE/connectlinuxs390x if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : for service in suseconnect-keepalive.service suseconnect-keepalive.timer ; do sysv_service=${service%.*} if [ ! -e /usr/lib/systemd/system/$service ] && [ ! -e /etc/init.d/$sysv_service ]; then mkdir -p /run/systemd/rpm/needs-preset touch /run/systemd/rpm/needs-preset/$service elif [ -e /etc/init.d/$sysv_service ] && [ ! -e /var/lib/systemd/migrated/$sysv_service ]; then /usr/sbin/systemd-sysv-convert --save $sysv_service || : mkdir -p /run/systemd/rpm/needs-sysv-convert touch /run/systemd/rpm/needs-sysv-convert/$service fi done fi # Only run this part if SUSEConnect is being updated. # $1 holds the number of packages installed in this environment # see: https://docs.fedoraproject.org/en-US/packaging-guidelines/Scriptlets/ if [ $1 -gt 1 ]; then # in pre blocks the old version is still installed. This way we can determine # the old version running. version=$(SUSEConnect --version) timer_release="0.3.33" if printf "$version\n$timer_release" | sort -C -V ; then cat << EOF Empowering you with enriched system visibility in the SUSE Customer Center SUSE is committed to helping provide better insights into the consumption of SUSE subscriptions regardless of where they are running; physical or virtual, on-prem or in the cloud. SUSE has been working on several improvements to the SUSE Customer Center (SCC), RMT, and SUSE Manager to provide a clearer picture of your system landscape: - SUSE Manager v4.1+ now sends system information to SCC. - SCC now captures which products are activated on systems that sit behind RMT or SMT. - This update will enable your system to "ping" SCC/RMT daily to confirm the system’s active status. This will help you identify or filter out systems in SCC that are no longer running or decommissioned. As always, the choice is yours, you can disable the daily ping by disabling the suseconnect-keepalive systemd timer. We will continue improving our products to make it easier for you to view and manage your subscription consumption. As always, we’d love to hear your feedback about these improvements and any ideas you might have. EOF fi fiif [ -s /etc/zypp/credentials.d/NCCcredentials ] && [ ! -e /etc/zypp/credentials.d/SCCcredentials ]; then echo "Imported NCC system credentials to /etc/zypp/credentials.d/SCCcredentials" cp /etc/zypp/credentials.d/NCCcredentials /etc/zypp/credentials.d/SCCcredentials fi if [ -s /etc/suseRegister.conf ]; then reg_server=$(sed -n "s/^[[:space:]]*url[[:space:]]*=[[:space:]]*\(https\?:\/\/[^\/]*\).*/\1/p" /etc/suseRegister.conf) # if we have a custom regserver and no SCC config yet, write it if [ -n "$reg_server" ] && [ "$reg_server" != "https://secure-www.novell.com" ] && [ ! -e /etc/SUSEConnect ]; then echo "Imported /etc/suseRegister.conf registration server url to /etc/SUSEConnect" echo "url: $reg_server" > /etc/SUSEConnect fi fi # remove stale update-alternatives config left by previous split, versioned packaging of SUSEConnect if update-alternatives --config SUSEConnect &> /dev/null ; then update-alternatives --force --quiet --remove-all SUSEConnect ln -fs ../sbin/SUSEConnect /usr/bin/SUSEConnect fi # Randomize shedule times for SLES12. SLES12 systemd does not support # RandomizedDelaySec=24h. if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" ]; then /usr/bin/systemctl daemon-reload || : fi for service in suseconnect-keepalive.service suseconnect-keepalive.timer ; do sysv_service=${service%.*} if [ -e /run/systemd/rpm/needs-preset/$service ]; then /usr/bin/systemctl preset $service || : rm "/run/systemd/rpm/needs-preset/$service" || : elif [ -e /run/systemd/rpm/needs-sysv-convert/$service ]; then /usr/sbin/systemd-sysv-convert --apply $sysv_service || : rm "/run/systemd/rpm/needs-sysv-convert/$service" || : touch /var/lib/systemd/migrated/$sysv_service || : fi 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 suseconnect-keepalive.service suseconnect-keepalive.timer || : ( 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 suseconnect-keepalive.service suseconnect-keepalive.timer ) || : fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $1 -eq 0 ]; then # Package removal for service in suseconnect-keepalive.service suseconnect-keepalive.timer ; do sysv_service="${service%.*}" rm "/var/lib/systemd/migrated/$sysv_service" || : done fi if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -ge 1 ]; then # Package upgrade, not uninstall if [ -x /usr/bin/systemctl ]; then ( 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 suseconnect-keepalive.service suseconnect-keepalive.timer ) || : fi fiwg?|1'T-L:@'Vu U sAP>0Q%qDYk}AA큤A큤AAA큤A큤A큤A큤A큤A큤A큤A큤A큤ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc6cd6707dd6bfb2b752a2a53c4c54da5f57b046fcafee0238763c8b910de971f693f41d744ea225dfe337385ecc8b789e6750a6f198c5a2ed6bf30c79ee98840b36897a5b1e947575b9d9c7f474d0a7c7453ee3f3a649272e582333b66e7ddf89126b4fa7a2ac8f2686bba15922aaba8147c4feedbf59d4080ad57d208bee117f20242d084955ae80d9b7daededefc117438ac63d30c6041b450f2ba6ccb0b3a416c643c85e8734659930e212497991303e987e39e16363d0c5e328f929dd982818cce25d1986ab5d71d174fe50f341f1ad9251881bd930d7f62bc8bb7907e3eb1782e9428b03fea4920cda56305485ab8fe632e5a80f2a73da4bc01a9998907526d37e57e8cdba098c74cc1e87e400be0611acb6cd5ce605c0a322ddaa1868fb1af90f0632c9777e3dcdd2e07162880a017b9a198abf75e192635c0765cc3d290d1af9b82df62a8d27e1a4e95875c539587506d8990c33e5844db11ac79ab003376a64237490cac52bc2b0d3107a9c254390e7ef2ebef5bf86a863dadc13f8ab46189303532f66b57e8aa526a63a5a8928cdc682bbb3a80bb817b1dd803002530e461c6ffa8f1c1eaa58a4408b7f24d77c4007be1bea6daab0ee67e0beea79d31b30d529d3241b7985aafeca4b74886618a372ec23c49167f0ffd37b77bcdb9b809f2d28703f4a95d487335e250e753cc78bd49d3e090c7fcc5b74615342665f9f0ff6e2680d1f332e051b35b0b34b7dd16c180d38b42b222bd260671fdb37d5fe5dadd1eb1ab0b4a8e052fa8ba5a8d97c6f733d4feff43774960906e83a27ce06e536e22b38d3de0089acfacae231d01626ed531ecf5acd65d67044c989c4cd79032f2323057d4269ee1aee975519a74e18374ba20965470a49b247f96f28bbf85090d30a6a7f5349c2ed6ca46b31da13e8d3cb623133bc7c25fc9af65e9a64fca956e7e9fb6bd0f825ef744a3e2adf1746bd95aeec7ac0d5b418b44157ed9d31f484b6111abfa47744508498a95c1a5bd614c4e781d1e65108fbb79ce7dd25c53917292120bb9e63ed81eb92f20742ba9a982b43ea160284d6500c6f95ef8edb1917ef3c9844d2cd868a6b81f487299d3c8dbbd91b9cceebadbf0df9571c2d32c54b3ce656fd9274bd8889f5c73b39862a62a9159696f0681001efc1d8c8635b6bab86cde7f2721024be065cbee68cd1a12a652adc0461c006eac90d8bfb160fcbf9c679d8cfc94bee45f91e8d29154f9a01f7f384298d1988d93e60a0ebe3e2510892bb51eee02dbf904de48bd0d6333b1d635e984b57be0f07c7e9d910c12cc91a42655bd0ad6ae792596e19a4a918f047c7594a22a9168058b962e5c58ed464534a083c77651588e75696d699b250f462faa95d13f602c39f9e046fbe67ad19c6f71b469282c6e26a1b8d3073b34338bee363bd5053c9dc7e1f38852496517426dfeaed52e858a764fa21aa72b8b3ffa96d3928dd5a00375629e7fad9f8e87050381ad53c20dc84bdf7d61381012736953098b54b09650e8405a1289338fcee766c902de57a458854901be96127e20103bb080573ba4682b61f0111066fc047b1379677d699c4da9b789c7a781186a4bb121cdc539d80d9e7088ba2681e19c8d7bf72ec84bef481273da44096027b389251d96eb06d7390a8a21ef161ceaea916858679b8186622bf17f72d972e7adb852ed8ebd641a80ef2b4d70cd62b0df061c8ad615325dd98897309c93e1f8cfe4762d69421bd144ad5e2044d4012c1770dc49cf9a55da759a95772e705c49aa516d802efab296c5edcce6d3164ed4bbbddf595750063954ab1dc8b5db676d784433f6da8acb15632976904940b98e9fefae4af36fa04cb3c545e2551c6dc383b35ca8dc18afd7cc37e42c88902f691759908070996744df415825203f95eab87cb9cc4171fd01499cef4eadc6101374210b2c702fb061e3d961c900a58a43b518cb5889bed460c805d26edb53197bd0d4363969696d0154273d939c24d208bd8b8a1a6a2f608965797fa54e69d6a928b6a40598e902d70d0b420d98f62db14ca2077c3b6d25605b81e75103573784a65a7bb55fdf490eb2d51e6d6c1883b792573378e8242fb58ec75af56ea73926262597d7de58e9344d73740fcfb0548bdf6601365d445137f68addbfc2a0982493088d57d39b320e75a3471fb407ca9120771fb26715b4d9a461eaac21dd31aa873605d50ef536d8db70c10b5382cfc545303680d9f95018d7b7023ece1c569200b4d76613c8f6ea7237b4bf6d47a871c78606bc46cbb57ceeaf93c32a0a95b121931301182443199f2fc614534dbde5e5b46cdfe500c58693bdef05265d514509be1da10fa9420b331fb42dcd47b18303e46687f272b3128b5b2e4777d33144def3edef5f4bf3324e7dd5368ef08ba094a7a15a8a8614b1a67690f97dd1803bd5eda448c64f26feea58189d65f38805bcf48731a5e0c05b0568b046b2d25de../sbin/SUSEConnectserviceQQrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootSUSEConnect-0.3.36-150300.20.6.1.src.rpmSUSEConnectSUSEConnect(s390-64)config(SUSEConnect)rubygem(ruby:2.5.0:suse-connect)rubygem(ruby:2.5.0:suse-connect:0)rubygem(ruby:2.5.0:suse-connect:0.3)rubygem(ruby:2.5.0:suse-connect:0.3.36)rubygem(suse-connect) @    @/bin/sh/bin/sh/bin/sh/bin/sh/usr/bin/ruby.ruby2.5/usr/sbin/update-alternativesca-certificates-mozillaconfig(SUSEConnect)coreutilsnet-toolsrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)ruby(abi)util-linuxzypperzypper(auto-agree-with-product-licenses)0.3.36-150300.20.6.13.0.4-14.6.0-14.0-15.2-12.5.0suseRegisteryast2-registration3.1.129.74.14.3b(b@b4t@b8ay?@` @`-_@_q@_L@_FN^)@^ @]d@]c@]@]@]L]J@\t@\N\Yz\ `[@[v[ @[ͻ[[@[(@[{@Z@Z?Z؄ZZ@Zp^@Zg#Z`@ZDZ7Z2gZ)-@Y@YP@Y9<@Y i@XXZW?@ABCDEFGHI0.3.36-150300.20.6.10.3.36-150300.20.6.10.3.36-150300.20.6.10.3.360.3.360.3.360.3.360.3.36     SUSEConnectSUSEConnect.examplezyppcredentials.dSCCcredentialsSUSEConnectsuseconnect-keepalive.servicesuseconnect-keepalive.timersuse-connect-0.3.36.gemsuse-connect-0.3.36LGPL_2.1LICENSEREADME.mdbinSUSEConnectlibsusesuse.rbconnectconnect.rbapi.rbcli.rbclient.rbconfig.rbconnection.rbcore_exthash_refinement.rbcredentials.rberrors.rbhwinfoarm64.rbbase.rbs390.rbx86.rblogger.rbmigration.rbpackage_search.rbproduct.rbremoteactivation.rbproduct.rbserver_driven_model.rbservice.rbsubscription.rbrexml_refinement.rbssl_certificate.rbstatus.rbsystem.rbtemplatesextension.text.erbextension_item.text.erbextensions_list.text.erbproduct_statuses.text.erbversion.rbyast.rbzypperzypper.rbproduct.rbproduct_status.rbtoolkitcast.rbcurlrc_dotfile.rbproduct_equality.rbrenderer.rbsystem_calls.rbutilities.rbtaskspackage.rakesuse-connect-0.3.36.gemspecSUSEConnectrcsuseconnect-keepaliveSUSEConnect.5.gzSUSEConnect.8.gz/etc//etc/zypp//etc/zypp/credentials.d//usr/bin//usr/lib/systemd/system//usr/lib64/ruby/gems/2.5.0/cache//usr/lib64/ruby/gems/2.5.0/gems//usr/lib64/ruby/gems/2.5.0/gems/suse-connect-0.3.36//usr/lib64/ruby/gems/2.5.0/gems/suse-connect-0.3.36/bin//usr/lib64/ruby/gems/2.5.0/gems/suse-connect-0.3.36/lib//usr/lib64/ruby/gems/2.5.0/gems/suse-connect-0.3.36/lib/suse//usr/lib64/ruby/gems/2.5.0/gems/suse-connect-0.3.36/lib/suse/connect//usr/lib64/ruby/gems/2.5.0/gems/suse-connect-0.3.36/lib/suse/connect/core_ext//usr/lib64/ruby/gems/2.5.0/gems/suse-connect-0.3.36/lib/suse/connect/hwinfo//usr/lib64/ruby/gems/2.5.0/gems/suse-connect-0.3.36/lib/suse/connect/remote//usr/lib64/ruby/gems/2.5.0/gems/suse-connect-0.3.36/lib/suse/connect/templates//usr/lib64/ruby/gems/2.5.0/gems/suse-connect-0.3.36/lib/suse/connect/zypper//usr/lib64/ruby/gems/2.5.0/gems/suse-connect-0.3.36/lib/suse/toolkit//usr/lib64/ruby/gems/2.5.0/gems/suse-connect-0.3.36/lib/tasks//usr/lib64/ruby/gems/2.5.0/specifications//usr/sbin//usr/share/man/man5//usr/share/man/man8/-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.suse.de/SUSE:Maintenance:25821/SUSE_SLE-15-SP3_Update/14801125a7cc4ce913265c0e3ad56a3f-SUSEConnect.SUSE_SLE-15-SP3_Updatedrpmxz5s390x-suse-linuxemptyASCII textdirectoryPOSIX tar archiveUTF-8 Unicode textRuby script, ASCII text executableRuby script, ASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)RPPPPPR R@g } curlgawkgpg2grepopenssl(cli)sedutf-877b1c9af6c531af2b297dc3c0908808f4c56c2bae03388d654c9171b61653160?@7zXZ !t/.T]"k%Gye10dNfƑʡM ֬pa[D9_Ct)[=:ۀӶ".\ &r&bhe+mLN3VE  =w~+Vz"q|$}z௡<@ߴj/. Q.sӣ|9$ƊY>7z}.*wL]!}ϑTȠ#[$uWq=g E&9:WRs_*莀tb \daGMvϭGAHb ?d/!õ a!CԐzbjp)-xPiݕ".Zm9TWhSﴮ€EsA}U{kn97Xnla ↓ f;Qs~NRX`b=6pUo,`Ni)@ #F rڋy9d I Ft+h|&D>#uއaZ¹ZQ_}?:λ*pz 7Eyck3` 6o= EBom;/\D-%pAEġ=ٕ-eqۃM*?hWnj! H7a+RQ l59zus/DiIv|uRYn+ݖ4L]!T* %0)(<=1wҶJeXNk{i^$[]YSN7k֓W/pJK߾miQS?{*!o@?)VwSLlxA[Z1X'e*aŠ5]7#6af@Hn˿e)$u*ZsSO ܙu?>],E![ 0\%2~ G:VGșTOy'c-p Y0~BC_z<9Gno<>jD|[Wdo\ff>)6BgA r܉ybb꿩;6"> ZuWbc5DEYR򕮠c,N0>ӝcΝ6!`?~m$?P#*ӶȾNA墑vN6D S5=[,P@>#c^ʰޡѠV p1VCZ'KS@XHoHHybՎA(w죝=:`nOf}TDEn|iѢg!UeњD|C} aG=2ш`t;.dSϺC %:)!b͞DRZ!$4=M> E\k8Ԇ̕H.*<2FΝ(pM)3D{m>-^xQ˔Ćf 8"+b'uxn@ٖ7̙{}bʾ{ ?0$GN'NT#>nAB#q&p)UqBKЁImAP&>Z P{ _S-ֻoD E]g #V;Й(E24 0jE YZ