Your message dated Thu, 29 Aug 2019 15:55:05 +0000
with message-id <[email protected]>
and subject line Bug#913222: fixed in systemd 242-5
has caused the Debian Bug report #913222,
regarding journalctl: bash-completion: incorrect sorting of --priority arguments
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
913222: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=913222
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: systemd
Version: 239-11
Severity: minor
File: /usr/share/bash-completion/completions/journalctl

The completion of the --priority arguments is sorted in alphabetical
order instead of numerical order. The definition of the priorities is
in the correct order in the completion source but since readline sorts
completion arguments by default the sorting gets changed. The bash manual page 
says there is a nosort compgen option that might fix this.

$ journalctl --priority <TAB>
alert    crit     debug    emerg    err      info     notice   warning  

$ grep __syslog_priorities= /usr/share/bash-completion/completions/journalctl
__syslog_priorities=(emerg alert crit err warning notice info debug)

$ man journalctl | grep -A3 'The log levels are'
           the form FROM..TO. The log levels are the usual syslog log levels
           as documented in syslog(3), i.e.  "emerg" (0), "alert" (1),
           "crit" (2), "err" (3), "warning" (4), "notice" (5), "info" (6),
           "debug" (7). If a single log level is specified, all messages with

$ man syslog | tr -s \\n | grep -EA8 'The +levels +are'
       This determines the importance of the  message.   The  levels  are,  in
       order of decreasing importance:
       LOG_EMERG      system is unusable
       LOG_ALERT      action must be taken immediately
       LOG_CRIT       critical conditions
       LOG_ERR        error conditions
       LOG_WARNING    warning conditions
       LOG_NOTICE     normal, but significant, condition
       LOG_INFO       informational message

-- Package-specific info:

-- System Information:
Debian Release: buster/sid
  APT prefers testing-debug
  APT policy: (900, 'testing-debug'), (900, 'testing'), (800, 
'unstable-debug'), (800, 'unstable'), (790, 'buildd-unstable'), (700, 
'experimental-debug'), (700, 'experimental'), (690, 'buildd-experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.18.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_AU.utf8, LC_CTYPE=en_AU.utf8 (charmap=UTF-8), 
LANGUAGE=en_AU.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages systemd depends on:
ii  adduser          3.118
ii  libacl1          2.2.52-3+b1
ii  libapparmor1     2.13.1-3+b1
ii  libaudit1        1:2.8.4-2
ii  libblkid1        2.32.1-0.1
ii  libc6            2.27-8
ii  libcap2          1:2.25-1.2
ii  libcryptsetup12  2:2.0.5-1
ii  libgcrypt20      1.8.4-3
ii  libgnutls30      3.5.19-1+b1
ii  libgpg-error0    1.32-3
ii  libidn11         1.33-2.2
ii  libip4tc0        1.8.1-2
ii  libkmod2         25-1
ii  liblz4-1         1.8.2-1
ii  liblzma5         5.2.2-1.3
ii  libmount1        2.32.1-0.1
ii  libpam0g         1.1.8-3.8
ii  libseccomp2      2.3.3-3
ii  libselinux1      2.8-1+b1
ii  libsystemd0      239-11
ii  mount            2.32.1-0.1
ii  procps           2:3.3.15-2
ii  util-linux       2.32.1-0.1

Versions of packages systemd recommends:
ii  dbus            1.12.10-1
ii  libpam-systemd  239-11

Versions of packages systemd suggests:
ii  policykit-1        0.105-21
ii  systemd-container  239-11

Versions of packages systemd is related to:
pn  dracut           <none>
ii  initramfs-tools  0.132
ii  udev             239-11

-- no debconf information

-- 
bye,
pabs

https://wiki.debian.org/PaulWise

Attachment: signature.asc
Description: This is a digitally signed message part


--- End Message ---
--- Begin Message ---
Source: systemd
Source-Version: 242-5

We believe that the bug you reported is fixed in the latest version of
systemd, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Michael Biebl <[email protected]> (supplier of updated systemd package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Thu, 29 Aug 2019 16:18:18 +0200
Source: systemd
Architecture: source
Version: 242-5
Distribution: unstable
Urgency: medium
Maintainer: Debian systemd Maintainers 
<[email protected]>
Changed-By: Michael Biebl <[email protected]>
Closes: 913222 935091 936032
Changes:
 systemd (242-5) unstable; urgency=medium
 .
   [ Dan Streetman ]
   * d/rules: add CONFFGLAGS_UPSTREAM to dh_auto_configure -- params
 .
   [ Michael Biebl ]
   * core: never propagate reload failure to service result.
     Fixes a regression introduced in v239 where the main process of a
     service unit gets killed on reload if ExecReload fails. (Closes: #936032)
   * shared/seccomp: add sync_file_range2.
     Some architectures need the arguments to be reordered because of alignment
     issues. Otherwise, it's the same as sync_file_range.
     Fixes sync_file_range failures in nspawn containers on arm, ppc.
     (Closes: #935091)
   * bash-completion: don't sort syslog priorities.
     By default, the available completions are sorted alphabetically, which
     is counterproductive in case of syslog priorities. Override the default
     behavior using the `nosort` option. (Closes: #913222)
   * test-bpf: skip test when run inside containers
Checksums-Sha1:
 1f9b59bb6ffe8b61fb298789740ab577b5acbd0a 4947 systemd_242-5.dsc
 33705a2b645651029e23584eee2bf6b70180fc5c 155568 systemd_242-5.debian.tar.xz
 b48ece9e1b0a3ab4d4f8308a68d9d42ecccef7a4 9408 systemd_242-5_source.buildinfo
Checksums-Sha256:
 51202ab44831fc4eb5c5d8cbabfead78f248ff201dfdeeb95cfe3030b3a9f2c1 4947 
systemd_242-5.dsc
 c85c3bcf9939d0ba0f7a06abfee4e8c870664b01fbb440b1978a4357a2a9e466 155568 
systemd_242-5.debian.tar.xz
 efe4668ae5cad4f25801bc15d1ea6667c3b01fd5ca09f2b032d5a81fb71adc90 9408 
systemd_242-5_source.buildinfo
Files:
 59dd97440a2b64511b37cdfe7a1f0a4b 4947 admin optional systemd_242-5.dsc
 9a3ee17e006fd89f0d9c9d8caa1cf5e5 155568 admin optional 
systemd_242-5.debian.tar.xz
 02374233288d33ad6535993c67ff0320 9408 admin optional 
systemd_242-5_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEECbOsLssWnJBDRcxUauHfDWCPItwFAl1n6r8ACgkQauHfDWCP
ItzO3w//YR6qdW3ZoUzD+pnVPqfzocxA6T8lMDxuE8UXQE53ZIfd/MjnXFD6OHFG
+m2WhODKUrfzwRmLCridyOr7+Y5xr2rQkML1AeHiGfqThmcYuvHy37Pu7xF5Y4Rl
/7nmajXAP+7h55p3Bce+YhfeWr7YiZoL00zuOe3YZ+kmcxdCUcDmeQLH9hkCmLf1
jc6WcQNdJdiZdeMIDLzO7BcqqtwaIeX+X1LC4HI/eT/kOrASAzUw1BfxFtnzQ/Pu
6ppkkm/y6QYF9Wmpb0deA8dDa+5YA9JJTUHupxk5qPYH+bWZp6Y5q1JaIvEPuRlu
pe8gBPtCs8NravvoA4c5AXNOyJViqG8GHnmNkbp0FkVtlrr2em7kxrdSDe8thwKR
FfHwS00qmHiYd8SU520Bwx6MrO+gPYqWkFsOLPB8KqdQwBTd2cKksf1ih6TReVmF
lSuykLfPgGN2Aqz84oSYmVViOFW2JDjxkpbnFpfe24MbroWKdrI8kuZTx8x41KIf
jw/kbXmeBCw/e3i/XSgu3B053K1zx+HiRxeYEF1056sXcWsSowiCCdkx7dVfe08L
3i3Ay2tf2eGkHTdmJxuoW2zgh9wcJ7MQG7a9QCCAn9nqNuk6X1/6SLLUQAoy0em9
npC5jktHfup8kbt+hTsw1QOQWOzOTttwsymHW/j5FL47e9mbhro=
=MvSV
-----END PGP SIGNATURE-----

--- End Message ---
_______________________________________________
Pkg-systemd-maintainers mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-systemd-maintainers

Reply via email to