syslog-service-2.0-11.2 >  A `K֯p9|<_$p8i?izkhuVԺC]Q'wI9%+lڒ ROCJ5FtY 8tk|g6ᄁS\b6,H>)(u3\Ȑ5$p2n\7xo}݉,{jgNId6OW?FQ9u_j;.y~ =DٛL3}XCWl(حyBtDGܲ3N@HQWCI0Y#aQ,043bcf8b49c72c3b1425567e5b9bc8e96b6af9a62c72aa8722f1bf40e7d27c3a5e5fb901edf1753c1bba690c049138fe17a16aed8ĉ`K֯p9|%V'Ϧ橇 .L P R94pF*4?*$d  9 (SY`~<9t       ) B ` t  !(!8" 9"4 :# =&>&?&@&F&G&H&I'X'Y'\'$]'8^'pb'c(}d(e(f(l(u(v)w)x)y)z))))* Csyslog-service2.011.2Syslog service files & scriptsThe package syslog-service provides the service boot scripts for SysV and the service unit files for systemd.`K֏sheep14SUSE Linux Enterprise 15SUSE LLC GPL-2.0-or-laterhttps://www.suse.com/System/Daemonshttp://www.infodrom.org/projects/sysklogd/linuxnoarch 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 klog.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 PNAME=syslog DEF_VAL="no" DEL_TEMPL=/usr/share/fillup-templates/$PNAME.del rm -f $DEL_TEMPL for var in SYSLOG_DAEMON ; do echo -e "#\n$var=$DEF_VAL\n" >> $DEL_TEMPL done if [ -f /etc/sysconfig/$PNAME ] ; then /bin/fillup -q -t -r -i -d "=" /etc/sysconfig/$PNAME $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ test -f /etc/sysconfig/$PNAME.new && mv /etc/sysconfig/$PNAME.new /etc/sysconfig/$PNAME fi for i in $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ ; do if [ -f $i ] ; then . $i rm -f $i fi done PNAME=syslog DEF_VAL="no" DEL_TEMPL=/usr/share/fillup-templates/$PNAME.del rm -f $DEL_TEMPL for var in SYSLOG_REQUIRES_NETWORK ; do echo -e "#\n$var=$DEF_VAL\n" >> $DEL_TEMPL done if [ -f /etc/sysconfig/$PNAME ] ; then /bin/fillup -q -t -r -i -d "=" /etc/sysconfig/$PNAME $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ test -f /etc/sysconfig/$PNAME.new && mv /etc/sysconfig/$PNAME.new /etc/sysconfig/$PNAME fi for i in $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ ; do if [ -f $i ] ; then . $i rm -f $i fi done PNAME=boot DEF_VAL="no" DEL_TEMPL=/usr/share/fillup-templates/$PNAME.del rm -f $DEL_TEMPL for var in KLOGCONSOLE_PARAMS ; do echo -e "#\n$var=$DEF_VAL\n" >> $DEL_TEMPL done if [ -f /etc/sysconfig/$PNAME ] ; then /bin/fillup -q -t -r -i -d "=" /etc/sysconfig/$PNAME $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ test -f /etc/sysconfig/$PNAME.new && mv /etc/sysconfig/$PNAME.new /etc/sysconfig/$PNAME fi for i in $DEL_TEMPL /etc/sysconfig/$PNAME.deleted.$$ ; do if [ -f $i ] ; then . $i rm -f $i fi done PNAME=boot 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 #BEGIN KLOGCONSOLE_PARAMS migration # KLOGCONSOLE_PARAMS was supported in /etc/sysconfig/boot up to Leap 15 and SLE 15. # Based on genopts-1.3 options parser. if test "$KLOGCONSOLE_PARAMS" != "no" ; then KLOG_CONSOLE= CONSOLE_LOGLEVEL= function optarg_parse { until [ $# -eq 0 ] ; do case "$1" in -* ) OPTTMP="${1:1}" until [[ -z "$OPTTMP" ]] ; do case "${OPTTMP:0:1}" in r ) KLOG_CONSOLE="${OPTTMP:1}" if [[ -z "$KLOG_CONSOLE" ]] ; then shift KLOG_CONSOLE="$1" else break fi ;; l ) CONSOLE_LOGLEVEL="${OPTTMP:1}" if [[ -z "$CONSOLE_LOGLEVEL" ]] ; then shift CONSOLE_LOGLEVEL="$1" else break fi ;; esac OPTTMP="${OPTTMP:1}" done ;; esac shift done } optarg_parse $KLOGCONSOLE_PARAMS case "$CONSOLE_LOGLEVEL" in 0) CONSOLE_LOGLEVEL=emerg ;; 1) CONSOLE_LOGLEVEL=alert ;; 2) CONSOLE_LOGLEVEL=crit ;; 3) CONSOLE_LOGLEVEL=err ;; 4) CONSOLE_LOGLEVEL=warning ;; 5) CONSOLE_LOGLEVEL=notice ;; 6) CONSOLE_LOGLEVEL=info ;; 7) CONSOLE_LOGLEVEL=debug ;; esac unset OPTTMP cat >/etc/sysconfig/boot.update </dev/null 2>&1 || : 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 klog.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 klog.service ) || : fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $1 -eq 0 ]; then # Package removal for service in klog.service ; 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 klog.service ) || : fi fi~_R큤`K֎`K֎`K֎`K֎`K֎0a450bd7be7a82bffb58addb64672eb41e5d6e1bd957c2685c30de4bedc31d1df2d9d3c066a60e363826f8e1cf69bff8c2a26fef3d3910225d5436f7f4eef2bcee3a02fd9aa6ab81fb459d0abd77446fa6f60f7d7c6673b4f946b1df012c2d4135f073cb5ea0d030a1ed608a4b6f22500c16aa1ceb92148a8b53bb7ea1d480b315f722484212cf05b660df61356b870635e9b5cd92bb8d59372f6f70e4c67d8crootrootrootrootrootrootrootrootrootrootsyslogd-1.4.1-11.2.src.rpmconfig(syslog-service)syslog-service @    /bin/bash/bin/sh/bin/sh/bin/sh/bin/shconfig(syslog-service)coreutilsdiffutilsfillupgreplogrotaterpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)syslogsysvinit(network)2.0-11.23.0.4-14.6.0-14.0-15.2-14.14.1_=@^W@\[@Z@X-XCW@Wq@V@UL@UJ@U.@werner@suse.demichael@stroeder.comjengelh@inai.desbrabec@suse.comrbrown@suse.comwerner@suse.dewerner@suse.detchvatal@suse.comtchvatal@suse.comschwab@suse.dewerner@suse.dewerner@suse.dewerner@suse.de- Set permission also in file list for /etc/syslog.conf- Removed create option from logrotate.syslog to let logrotate preserve file system ACLs- Set /bin/bash as scriptlet interpreter where needed.- Use setlogcons and dmesg instead of klogconsole; perform migration of sysconfig/boot file (boo#1116277).- Replace references to /var/adm/fillup-templates with new %_fillupdir macro (boo#1069468)- Use socket activation API of the libsystemd- Require user and group news- Add requires on klogd, previously in requires(pre); should fix issue found in sr#412257- Cleanup various rpmlint warnings - Use upstream url and sources - Remove the omv files, not needed- klogd-obsolete.patch: avoid use of obsolete function get_kernel_syms- Reintroduce /etc/sysconfig/boot for having KLOGCONSOLE_PARAMS back- Modernize systemd service units- Be aware that klog.service should be handled by the systemd rpm macros/bin/sh/bin/bash/bin/sh/bin/shsheep14 16155828632.0-11.22.0-11.2syslogrcsyslogklog.servicesysconfig.bootsyslog.8.gz/etc/logrotate.d//sbin//usr/lib/systemd/system//usr/share/fillup-templates//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:SLE-15-SP3:GA/standard/dc62ba0360fe3de99cdb8a8a7b87e0e1-syslogdcpioxz5x86_64-suse-linuxASCII textPOSIX shell script, ASCII text executabletroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)Rn593}Ӂ=%b@99v VmOD1Sk.qGKA;ᢸPVC[5-i8,'tXۆ.xp=56/݋Th$ RP&Z~5Xy؁ku &/r A2VSHpG,w:1vI7p򱖂Q,5g;X_;Q}ru0epUoB驹>Ppr$w qk8ՄYnI”FĢ6YDw $TLc0Xp*.{zjAWX"}!UcٝŐf'3o ݨGv>$k9SrPġxF"#Y9q~L$e+g}v|qt(ήrUcGЮV ]O?J h[ (<%SZ69CƭgΘYOk(ePCf! x]Dzp5h.l͡˘$dFA{:os,F$b#$7&M˯=sk]x1 2 O+\ K)Aux}439>WԀ /|y!/oǠCmI\`MIȻHs (q+<5&Wȇ{q,T60qϮC{f` Ĭ~%N$e sVQZj#x#ŔY[ _ kӆ$T T[1lz|SٹX*@;- uf/ZFDKߑ^RgU)JE@s'8Of2AI{SyhXokuAII8Dy{kҬ\ ssI% #̻ |eݜٺhQJ~yZ6v-m x:y[bne|,!SDM" bJrA|!4Oj\ZQ$6#UXјQL\sD37ޓt (eeqqߥ_D6ZJ( Ye;uKLH!!?hխ(04x+K_)&"^'1Mv"ApiL_ŭ =so76RClˊC\tt ":ml#Bo DDv\a)I [5injEbEق[/XaԮZ/^]@VnE`aN΁~4S~ZN)1X%QW##ٮF INZyC9Z6(;sScH8 @3¸#f}J+޲+# Ge'#[*n,fî$E"LP +ʾt.f,!(z|;A]+g'cËfОE{HǾ: :?̽}&,⁡M--"AHa:-&Œf7Uy`LwL9!$x,]B-uuH1A}NWػW1#sBA%edRRjx¢2\ :dFӌ|z< Ao})8ACv,gR0lղ5w$׃cOWZw+T.+E`'<Lk hDJSy g %{9+tҮON׿i ,1kmL [ pcw#s%Iy)UC6e SǻŶ" 0eIüQ]ěѧzBJ ?"$ 4YIskoʖa| !ڠ`7*3#L(UPQysd.>^^3,@^Хp񲴮;pKVGCo^[χA3pz-