qos-1.0.1-bp155.3.10 >  A dd5I%z Lm[ϱP4gI5)I1icɓ gEQ%u-%t!M+15_$6%K1  Ɉsydeo<6Kd)4>#y&*UiA1\-T  (FʋLD dmN9_EpQ݀OըV m`;M[L8UCtQp.!Bt*["|}cc Xx,Ϙj1 ƓYGƺۦ^Wi]"EZ@ltZ1;njP)%LU}qkl1?6$R2eP}螇a[Ժ3`'PXqRL}o r:2r#tl[ Ci8zkE|\z-?ż /d8۩H6O.5_42068e26a907fe2914eda6e74027fca3ecf62bf3ffef9b499afa637020a091a0d536dc87f68a09c8d03a449063cf384e05044003+dd5I%z to !ӂQH-GgVק lڤe{s+^@mKdדaj%\?,fA+H$.Tgo s(%ptB CsEU?04)IVXS8 ֪9~^xQ&lSJ 8f٦Ji9(aT &lDI$"AT) dc1~|V6}mL JGg ~F>칗9EsdJ,2evK;HWh] 2x*,}TルT2Ӕc>?&bQjώ>Sa.7$ 'y:$ v ^eR=}J8ts "Z]۾w͓5?g_zzLbudҘ?9{pF?d   O <BIf @L R X d ' ,8GVt(89:x=7>??G@OFWGlHxIXY\]^b cdef l"u4v@w|xyzCqos1.0.1bp155.3.10Simple traffic shaping utility for fighting bufferbloatThe Problem: Bufferbloat (see http://en.wikipedia.org/wiki/Bufferbloat) - Your SSH session turns to molasses when your kid watches YouTube - Your wife complains that "the internet is slow" - You hate the stupid DSL modems supplied by the phone company with their giant packet queues that add unnecessary latency - You have your own Linux router that routes all your traffic or is the only machine you have connected to the Internet and know there must be a better way The Solution: QoS QoS = "Quality of Service" You probably already know about it. Control and proritize traffic. This QoS is new and improved. Previous QoS setups only throttled traffic in the download direction. This one handles both directions using the (poorly documented) Linux ifb interface and tc(8) 'mirred' redirection.dd.sheep83#"SUSE Linux Enterprise 15 SP5openSUSEApache-2.0https://bugs.opensuse.orgSystem/Managementhttps://github.com/archiecobbs/qoslinuxnoarch 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 qos.service ; 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 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 qos.service ; 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 PNAME=qos 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="" SD_NAME=network/ 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" if [ "$FIRST_ARG" -eq 0 -a -x /usr/bin/systemctl ]; then # Package removal, not upgrade /usr/bin/systemctl --no-reload disable qos.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 qos.service ) || : fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $1 -eq 0 ]; then # Package removal for service in qos.service ; do sysv_service="${service%.*}" rm -f "/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 qos.service ) || : fi fiF큤dd.dd.dd.b3a9a8b2be153af561de616eec3d6973a16394238590736a82cd180f556ed5cbd8be829092dee4b93c08b0f6293fd0543031801a2649c89d6524710b371731e235931516afc74d8bec49eabd355d5f20be137169df2c05d15e3ad63e05b3eeedrootrootrootrootrootrootqos-1.0.1-bp155.3.10.src.rpmqos@     /bin/bash/bin/sh/bin/sh/bin/sh/bin/shcoreutilsdiffutilsfillupgrepiproute2rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)systemdsystemdsystemdsystemd3.0.4-14.6.0-14.0-15.2-14.14.3aqV@[@Z@X@P!@OP@Archie Cobbs archie.cobbs@gmail.comrbrown@suse.comarchie.cobbs@gmail.comarchie@dellroad.orgarchie@dellroad.org- Added hardening to systemd service(s) (sr#926717) * Added patch harden_qos.service.patch- Convert from SysV to systemd service (bsc#1116033)- Replace references to /var/adm/fillup-templates with new %_fillupdir macro (boo#1069468)- Add Requires(pre): insserv-compat. insserv is no longer part of a standard SUSE setup, since we have long switched to systemd.- Upgrade to version 1.0.1. - Fix several rpmlint warnings.- Initial commit/bin/sh/bin/sh/bin/sh/bin/shsheep83 16843313101.0.1-bp155.3.10qosqos.servicesysconfig.qos/usr/bin//usr/lib/systemd/system//usr/share/fillup-templates/-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:Backports:SLE-15-SP5/standard/96496f61b3825dad71786ace23c70604-qoscpioxz5noarch-suse-linuxBourne-Again shell script, ASCII text executableASCII textR#4'&,utf-8080aec3919f4c7fa82a202a5d21cabd1a8226e7fb98fe737175abf0741f82297?7zXZ !t/%O ] crv9wU7"*[Y%o wI#:r 7t FyLv aQ_j_ b 0K%40m==l|D+hIisƣv9[': ?.%V/VB[SSJ[L p cNv?VB8YiXj؄ׂɇ|DVE`rs#*YU]5QJ؍|A"S}IT5q%P?a"V$9G{g:'kJƷP C17Qv0UUA a<.8iUL&.e8@c]d ڈR |''qf^/"!h5)_~e)7I\b$I&~juc%@`ۮ˙Uq0/ǃ׆mHi0 8D,o ^gH8\!'\xmkob'Cz}!a (>+FQb;/G^1bC$*1ۅ%e>DS ,$^ 64${@)aA;* ;rnYG-`-HRT;nMAr5$$c-CeD<$m:xA%" abcƗ%S_u!BF@93t]G Z@ xqw$Dv1<ʄE3qЋF*FR#cN`D9:,XvL<描 oCjrYFԡt$'H\^%6䢼1So\Za[XX:'Uw;Fd@@Dp\[;k@*eUfVP#WĜ>N9o xbNUD>}t7b;˓l}WαF\V5&`v𿚏![.vm朮I(x h1 VVfCSoz[sjJQJ䆸Cp8X ?!_qHd\)R Z/93 AF-$AOSG7O4b[2c O(w$7&exB[N 6<`9Do&P47rŢ-ۂ!xƧ_>7L=#.3,6 M&-p'dgӀ#@`(m[?몠?.*UpEJaJ!31 2K|%:/e+N.\i)AFZ[~jt\ɡ5"~!Z]&u-vʫy̜oU2ZI|8YuX%/;٨k RA M0PKʀu2VR؂S_P(8s+a\߻ rM+|AU{ݦ;iaQ?UW G Lrc{ d 03a /.!]H)JYz6&!Y#a ͜Y@+ ֨x*U"j=2\2[T`3ͨ7er %,| Ud~JAŜ?E}nQ]D p_8붝+zyMϻmj .2 ~V%z ޏV' U 5d,e#T~bRS:$ gMWQ_DpT#_xNc{6J[LtlH!=޽Zan[;ԄTjeeq ܀ߘ 0SV7*w蟴L/+^_E3@Kt Hw匸.V ھ!a0=Fwq22.oڋG֧1{YP"20zm1ۈx]XDb9T2򰩑Pz}cr2