[systemd-commits] Changes to 'refs/tags/v36'

Kay Sievers kay at kemper.freedesktop.org
Sun Mar 24 14:35:33 PDT 2013


Tag 'v36' created by Lennart Poettering <lennart at poettering.net> at 2011-09-23 18:11 -0700

systemd 36

Changes since v35:
Albert Strasheim (1):
      man: fix typo in systemd manual page

Bastien Nocera (1):
      hostnamed: Fix "SetStaticHostname" debug output

Bill Nottingham (1):
      units: Add support for automounting configfs, ala debugfs, etc.

Kay Sievers (1):
      update TODO

Koen Kooi (2):
      analyze: always draw 1s marker for scale
      analyze: report startup time in plot mode as well

Lennart Poettering (45):
      fsck: show progress while fscking at boot
      stdout-bridge: set facility of messages with no facility to configured facility instead of LOG_USER
      dbus: terminate mechanism daemons after a while
      timedate: fix interfaces list
      condition: opt out of /proc/cmdline parsing only when running in a container, not in a VM
      condition: in ConditionPathIsExecutable follow symlinks
      service: drop broken support for X-Interactive fields in LSB headers
      stdout-syslog-bridge: properly handle overly long log lines
      update TODO
      unit: introduce ConditionPathIsMountPoint=
      units: don't initialize automount point for securityfs if the initrd already mounted the directory
      condition: always follow symlinks for condition checks, to mimic test
      modules-load: filter out double modules
      units: drop /sys/kernel/config automount unit
      units: drop automount unit for /sys/kernel/debug
      units: drop automount unit for /sys/kernel/security
      units: drop automount unit for /dev/mqueue
      units: drop automount unit for /dev/hugepages
      update TODO
      units: we don't need to check whether /sys/kernel/security is already mounted since we'll enumerate that fact anyway
      job: after converting a job from restart to start readd it to run queue
      mount: pull in quota tools from fstab lines with 'quota' option, too
      units: introduce unit file for FUSE fs
      udev: asynchronously mount fuse/confifgs as soon as the kmods are loaded
      service: if StandardInput=socket and StandardOutput=inherit imply socket for output, don't imply default output
      selinux: reopen log when loading the SELinux policy fails
      update TODO
      man: document that sd-daemon.[ch] is now available as shared library
      man: document pkg-config line for sd-daemon
      unit: don't recheck conditions when a unit is already starting but unit_start() is invoked
      man: document that PathChanged= does not care for simple writes but only for close()-after-write()
      coverity: fix a couple of bugs found by coverity
      coverity: change a few things so that coverity doesn't show so many false positives
      llvm-analyze: fix some bugs found by llvm-analyze
      llvm-analyze: change a few things to make llvm-analyze show fewer false positives
      loginctl: fix typo
      nspawn: set env var container=systemd-nspawn, following the scheme lxc introduced
      util: detect systemd-nspawn without relying on ns cgroup tree
      util: don't fail if no id was passed to detect_container()
      util: move virtualization detection into its own files, and extend return codes
      condition: optionally test against type of virtualization (vm vs. container)
      virt: add missing header inclusion
      service: fix up std output/error before we add dependencies to the bridge socket
      readahead: opt out of bridge logging for readahead in order not to delay things unnecessarily
      build-sys: bump release

Marko Saukko (1):
      units: In MeeGo there was more than one ExecStart lines present that caused systemd to refuse the rescue.service

Mathieu Bridon (1):
      man: list specifiers in a table

Michal Schmidt (11):
      units: direct stdout/stderr of rescue shells to tty
      man: document which condition tests follow symlinks
      service: handle forking services that move to a new PID
      condition: add ConditionPathIsSymbolicLink
      service: minor change in service_load_pid_file return value
      service: warn if a service fails to write its PID file
      units: fix rescue.service race with plymouth
      condition: fix reversed tests if path does not exist at all
      manager: fix job mode for SIGRTMIN+1, +2
      util: improve signal_to_string, signal_from_string
      unit: fix complementing of requirement deps with After deps for targets

---
 Makefile.am                                |   29 +-
 TODO                                       |   36 ++-
 configure.ac                               |    2 
 man/sd-daemon.xml                          |   27 +-
 man/sd_booted.xml                          |   26 +-
 man/sd_is_fifo.xml                         |   20 +
 man/sd_listen_fds.xml                      |   26 +-
 man/sd_notify.xml                          |   23 +-
 man/sd_readahead.xml                       |   26 +-
 man/systemd.path.xml                       |    6 
 man/systemd.unit.xml                       |  152 ++++++++++----
 man/systemd.xml                            |    2 
 src/99-systemd.rules.in                    |    9 
 src/binfmt.c                               |    2 
 src/condition.c                            |   60 ++++-
 src/condition.h                            |    2 
 src/conf-parser.c                          |    2 
 src/dbus-common.c                          |   74 ++++++
 src/dbus-common.h                          |    4 
 src/dbus-manager.c                         |    2 
 src/detect-virt.c                          |    8 
 src/fsck.c                                 |  134 ++++++++++++
 src/getty-generator.c                      |    1 
 src/hostnamed.c                            |   27 ++
 src/install.c                              |    3 
 src/job.c                                  |    5 
 src/kmsg-syslogd.c                         |    2 
 src/load-fragment-gperf.gperf.m4           |    2 
 src/load-fragment.c                        |   10 
 src/locale-setup.c                         |    1 
 src/localed.c                              |   25 ++
 src/loginctl.c                             |   53 ++--
 src/logind-dbus.c                          |    4 
 src/logind.c                               |    7 
 src/main.c                                 |    4 
 src/manager.c                              |   48 +++-
 src/manager.h                              |    3 
 src/modules-load.c                         |    2 
 src/mount.c                                |    5 
 src/nspawn.c                               |   15 -
 src/path.c                                 |    2 
 src/quotacheck.c                           |    1 
 src/readahead-collect.c                    |    1 
 src/readahead-replay.c                     |    1 
 src/sd-login.c                             |   45 ++--
 src/selinux-setup.c                        |    6 
 src/service.c                              |   78 ++++---
 src/shutdown.c                             |    1 
 src/socket.c                               |    8 
 src/stdout-syslog-bridge.c                 |   34 ++-
 src/strv.c                                 |   26 +-
 src/sysfs-show.c                           |    3 
 src/systemctl.c                            |   23 --
 src/systemd-analyze                        |   16 +
 src/timedated.c                            |   26 +-
 src/umount.c                               |    7 
 src/unit.c                                 |   26 +-
 src/util.c                                 |  272 ++++---------------------
 src/util.h                                 |   12 -
 src/vconsole-setup.c                       |    1 
 src/virt.c                                 |  314 +++++++++++++++++++++++++++++
 src/virt.h                                 |   38 +++
 units/console-shell.service.m4             |    2 
 units/dev-hugepages.automount              |   15 -
 units/dev-hugepages.mount                  |    2 
 units/dev-mqueue.automount                 |   15 -
 units/dev-mqueue.mount                     |    2 
 units/emergency.service                    |    2 
 units/rescue.service.m4                    |    8 
 units/sys-fs-fuse-connections.mount        |   18 +
 units/sys-kernel-config.mount              |   18 +
 units/sys-kernel-debug.automount           |   15 -
 units/sys-kernel-debug.mount               |    2 
 units/sys-kernel-security.automount        |   15 -
 units/sys-kernel-security.mount            |    2 
 units/systemd-readahead-collect.service.in |    1 
 units/systemd-readahead-replay.service.in  |    1 
 units/var-lock.mount                       |    1 
 units/var-run.mount                        |    1 
 79 files changed, 1336 insertions(+), 614 deletions(-)
---


More information about the systemd-commits mailing list