1 systemd System and Service Manager
5 * The boot-time readahead implementation for rotating media
6 will now read the read-ahead data in multiple passes which
7 consist of all read requests made in equidistant time
8 intervals. This means instead of strictly reading read-ahead
9 data in its physical order on disk we now try to find a
10 middle ground between physical and access time order.
12 * /etc/os-release files gained a new BUILD_ID= field for usage
13 on operating systems that provide continuous builds of OS
16 Contributions from: Auke Kok, Eelco Dolstra, Kay Sievers,
17 Lennart Poettering, Lukas Nykryn, Martin Pitt, Václav Pavlín
18 William Douglas, Zbigniew Jędrzejewski-Szmek
22 * systemd-python gained an API exposing libsystemd-daemon.
24 * The SMACK setup logic gained support for uploading CIPSO
27 * Behaviour of PrivateTmp=, ReadWriteDirectories=,
28 ReadOnlyDirectories= and InaccessibleDirectories= has
29 changed. The private /tmp and /var/tmp directories are now
30 shared by all processes of a service (which means
31 ExecStartPre= may now leave data in /tmp that ExecStart= of
32 the same service can still access). When a service is
33 stopped its temporary directories are immediately deleted
34 (normal clean-up with tmpfiles is still done in addition to
37 * By default, systemd will now set a couple of sysctl
38 variables in the kernel: the safe sysrq options are turned
39 on, IP route verification is turned on, and source routing
40 disabled. The recently added hardlink and softlink
41 protection of the kernel is turned on. These settings should
42 be reasonably safe, and good defaults for all new systems.
44 * The predictable network naming logic may now be turned off
45 with a new kernel command line switch: net.ifnames=0.
47 * A new libsystemd-bus module has been added that implements a
48 pretty complete D-Bus client library. For details see:
50 http://lists.freedesktop.org/archives/systemd-devel/2013-March/009797.html
52 * journald will now explicitly flush the journal files to disk
53 at the latest 5min after each write. The file will then also
54 be marked offline until the next write. This should increase
55 reliability in case of a crash. The synchronization delay
56 can be configured via SyncIntervalSec= in journald.conf.
58 * There's a new remote-fs-setup.target unit that can be used
59 to pull in specific services when at least one remote file
60 system is to be mounted.
62 * There are new targets timers.target and paths.target as
63 canonical targets to pull user timer and path units in
64 from. This complements sockets.target with a similar
65 purpose for socket units.
67 * libudev gained a new call udev_device_set_attribute_value()
68 to set sysfs attributes of a device.
70 * The udev daemon now sets the default number of worker
71 processes executed in parallel based on the number of available
72 CPUs instead of the amount of available RAM. This is supposed
73 to provide a more reliable default and limit a too agressive
74 paralellism for setups with 1000s of devices connected.
76 Contributions from: Auke Kok, Colin Walters, Cristian
77 Rodríguez, Daniel Buch, Dave Reisner, Frederic Crozat, Hannes
78 Reinecke, Harald Hoyer, Jan Alexander Steffens, Jan
79 Engelhardt, Josh Triplett, Kay Sievers, Lennart Poettering,
80 Mantas Mikulėnas, Martin Pitt, Mathieu Bridon, Michael Biebl,
81 Michal Schmidt, Michal Sekletar, Miklos Vajna, Nathaniel Chen,
82 Oleksii Shevchuk, Ozan Çağlayan, Thomas Hindoe Paaboel
83 Andersen, Tollef Fog Heen, Tom Gundersen, Umut Tezduyar,
84 Zbigniew Jędrzejewski-Szmek
88 * Configuration of unit files may now be extended via drop-in
89 files without having to edit/override the unit files
90 themselves. More specifically, if the administrator wants to
91 change one value for a service file foobar.service he can
92 now do so by dropping in a configuration snippet into
93 /etc/systemd/system/foobar.service.d/*.conf. The unit logic
94 will load all these snippets and apply them on top of the
95 main unit configuration file, possibly extending or
96 overriding its settings. Using these drop-in snippets is
97 generally nicer than the two earlier options for changing
98 unit files locally: copying the files from
99 /usr/lib/systemd/system/ to /etc/systemd/system/ and editing
100 them there; or creating a new file in /etc/systemd/system/
101 that incorporates the original one via ".include". Drop-in
102 snippets into these .d/ directories can be placed in any
103 directory systemd looks for units in, and the usual
104 overriding semantics between /usr/lib, /etc and /run apply
107 * Most unit file settings which take lists of items can now be
108 reset by assigning the empty string to them. For example,
109 normally, settings such as Environment=FOO=BAR append a new
110 environment variable assignment to the environment block,
111 each time they are used. By assigning Environment= the empty
112 string the environment block can be reset to empty. This is
113 particularly useful with the .d/*.conf drop-in snippets
114 mentioned above, since this adds the ability to reset list
115 settings from vendor unit files via these drop-ins.
117 * systemctl gained a new "list-dependencies" command for
118 listing the dependencies of a unit recursively.
120 * Inhibitors are now honored and listed by "systemctl
121 suspend", "systemctl poweroff" (and similar) too, not only
122 GNOME. These commands will also list active sessions by
125 * Resource limits (as exposed by the various control group
126 controllers) can now be controlled dynamically at runtime
127 for all units. More specifically, you can now use a command
128 like "systemctl set-cgroup-attr foobar.service cpu.shares
129 2000" to alter the CPU shares a specific service gets. These
130 settings are stored persistently on disk, and thus allow the
131 administrator to easily adjust the resource usage of
132 services with a few simple commands. This dynamic resource
133 management logic is also available to other programs via the
134 bus. Almost any kernel cgroup attribute and controller is
137 * systemd-vconsole-setup will now copy all font settings to
138 all allocated VTs, where it previously applied them only to
141 * libsystemd-login gained the new sd_session_get_tty() API
144 * This release drops support for a few legacy or
145 distribution-specific LSB facility names when parsing init
146 scripts: $x-display-manager, $mail-transfer-agent,
147 $mail-transport-agent, $mail-transfer-agent, $smtp,
148 $null. Also, the mail-transfer-agent.target unit backing
149 this has been removed. Distributions which want to retain
150 compatibility with this should carry the burden for
151 supporting this themselves and patch support for these back
152 in, if they really need to. Also, the facilities $syslog and
153 $local_fs are now ignored, since systemd does not support
154 early-boot LSB init scripts anymore, and these facilities
155 are implied anyway for normal services. syslog.target has
158 * There are new bus calls on PID1's Manager object for
159 cancelling jobs, and removing snapshot units. Previously,
160 both calls were only available on the Job and Snapshot
163 * systemd-journal-gatewayd gained SSL support.
165 * The various "environment" files, such as /etc/locale.conf
166 now support continuation lines with a backslash ("\") as
167 last character in the line, similar in style (but different)
168 to how this is supported in shells.
170 * For normal user processes the _SYSTEMD_USER_UNIT= field is
171 now implicitly appended to every log entry logged. systemctl
172 has been updated to filter by this field when operating on a
173 user systemd instance.
175 * nspawn will now implicitly add the CAP_AUDIT_WRITE and
176 CAP_AUDIT_CONTROL capabilities to the capabilities set for
177 the container. This makes it easier to boot unmodified
178 Fedora systems in a container, which however still requires
179 audit=0 to be passed on the kernel command line. Auditing in
180 kernel and userspace is unfortunately still too broken in
181 context of containers, hence we recommend compiling it out
182 of the kernel or using audit=0. Hopefully this will be fixed
183 one day for good in the kernel.
185 * nspawn gained the new --bind= and --bind-ro= parameters to
186 bind mount specific directories from the host into the
189 * nspawn will now mount its own devpts file system instance
190 into the container, in order not to leak pty devices from
191 the host into the container.
193 * systemd will now read the firmware boot time performance
194 information from the EFI variables, if the used boot loader
195 supports this, and takes it into account for boot performance
196 analysis via "systemd-analyze". This is currently supported
197 only in conjunction with Gummiboot, but could be supported
198 by other boot loaders too. For details see:
200 http://www.freedesktop.org/wiki/Software/systemd/BootLoaderInterface
202 * A new generator has been added that automatically mounts the
203 EFI System Partition (ESP) to /boot, if that directory
204 exists, is empty, and no other file system has been
205 configured to be mounted there.
207 * logind will now send out PrepareForSleep(false) out
208 unconditionally, after coming back from suspend. This may be
209 used by applications as asynchronous notification for
210 system resume events.
212 * "systemctl unlock-sessions" has been added, that allows
213 unlocking the screens of all user sessions at once, similar
214 how "systemctl lock-sessions" already locked all users
215 sessions. This is backed by a new D-Bus call UnlockSessions().
217 * "loginctl seat-status" will now show the master device of a
218 seat. (i.e. the device of a seat that needs to be around for
219 the seat to be considered available, usually the graphics
222 * tmpfiles gained a new "X" line type, that allows
223 configuration of files and directories (with wildcards) that
224 shall be excluded from automatic cleanup ("aging").
226 * udev default rules set the device node permissions now only
227 at "add" events, and do not change them any longer with a
228 later "change" event.
230 * The log messages for lid events and power/sleep keypresses
231 now carry a message ID.
233 * We now have a substantially larger unit test suite, but this
234 continues to be work in progress.
236 * udevadm hwdb gained a new --root= parameter to change the
237 root directory to operate relative to.
239 * logind will now issue a background sync() request to the kernel
240 early at shutdown, so that dirty buffers are flushed to disk early
241 instead of at the last moment, in order to optimize shutdown
244 * A new bootctl tool has been added that is an interface for
245 certain boot loader operations. This is currently a preview
246 and is likely to be extended into a small mechanism daemon
247 like timedated, localed, hostnamed, and can be used by
248 graphical UIs to enumerate available boot options, and
249 request boot into firmware operations.
251 * systemd-bootchart has been relicensed to LGPLv2.1+ to match
252 the rest of the package. It also has been updated to work
253 correctly in initrds.
255 * Policykit previously has been runtime optional, and is now
256 also compile time optional via a configure switch.
258 * systemd-analyze has been reimplemented in C. Also "systemctl
259 dot" has moved into systemd-analyze.
261 * "systemctl status" with no further parameters will now print
262 the status of all active or failed units.
264 * Operations such as "systemctl start" can now be executed
265 with a new mode "--irreversible" which may be used to queue
266 operations that cannot accidentally be reversed by a later
267 job queuing. This is by default used to make shutdown
268 requests more robust.
270 * The Python API of systemd now gained a new module for
271 reading journal files.
273 * A new tool kernel-install has been added that can install
274 kernel images according to the Boot Loader Specification:
276 http://www.freedesktop.org/wiki/Specifications/BootLoaderSpec
278 * Boot time console output has been improved to provide
279 animated boot time output for hanging jobs.
281 * A new tool systemd-activate has been added which can be used
282 to test socket activation with, directly from the command
283 line. This should make it much easier to test and debug
284 socket activation in daemons.
286 * journalctl gained a new "--reverse" (or -r) option to show
287 journal output in reverse order (i.e. newest line first).
289 * journalctl gained a new "--pager-end" (or -e) option to jump
290 to immediately jump to the end of the journal in the
291 pager. This is only supported in conjunction with "less".
293 * journalctl gained a new "--user-unit=" option, that works
294 similar to "--unit=" but filters for user units rather than
297 * A number of unit files to ease adoption of systemd in
298 initrds has been added. This moves some minimal logic from
299 the various initrd implementations into systemd proper.
301 * The journal files are now owned by a new group
302 "systemd-journal", which exists specifically to allow access
303 to the journal, and nothing else. Previously, we used the
304 "adm" group for that, which however possibly covers more
305 than just journal/log file access. This new group is now
306 already used by systemd-journal-gatewayd to ensure this
307 daemon gets access to the journal files and as little else
308 as possible. Note that "make install" will also set FS ACLs
309 up for /var/log/journal to give "adm" and "wheel" read
310 access to it, in addition to "systemd-journal" which owns
311 the journal files. We recommend that packaging scripts also
312 add read access to "adm" + "wheel" to /var/log/journal, and
313 all existing/future journal files. To normal users and
314 administrators little changes, however packagers need to
315 ensure to create the "systemd-journal" system group at
316 package installation time.
318 * The systemd-journal-gatewayd now runs as unprivileged user
319 systemd-journal-gateway:systemd-journal-gateway. Packaging
320 scripts need to create these system user/group at
323 * timedated now exposes a new boolean property CanNTP that
324 indicates whether a local NTP service is available or not.
326 * systemd-detect-virt will now also detect xen PVs
328 * The pstore file system is now mounted by default, if it is
331 * In addition to the SELinux and IMA policies we will now also
332 load SMACK policies at early boot.
334 Contributions from: Adel Gadllah, Aleksander Morgado, Auke
335 Kok, Ayan George, Bastien Nocera, Colin Walters, Daniel Buch,
336 Daniel Wallace, Dave Reisner, David Herrmann, David Strauss,
337 Eelco Dolstra, Enrico Scholz, Frederic Crozat, Harald Hoyer,
338 Jan Janssen, Jonathan Callen, Kay Sievers, Lennart Poettering,
339 Lukas Nykryn, Mantas Mikulėnas, Marc-Antoine Perennou, Martin
340 Pitt, Mauro Dreissig, Max F. Albrecht, Michael Biebl, Michael
341 Olbrich, Michal Schmidt, Michal Sekletar, Michal Vyskocil,
342 Michał Bartoszkiewicz, Mirco Tischler, Nathaniel Chen, Nestor
343 Ovroy, Oleksii Shevchuk, Paul W. Frields, Piotr Drąg, Rob
344 Clark, Ryan Lortie, Simon McVittie, Simon Peeters, Steven
345 Hiscocks, Thomas Hindoe Paaboel Andersen, Tollef Fog Heen, Tom
346 Gundersen, Umut Tezduyar, William Giokas, Zbigniew
347 Jędrzejewski-Szmek, Zeeshan Ali (Khattak)
351 * Timer units now support calendar time events in addition to
352 monotonic time events. That means you can now trigger a unit
353 based on a calendar time specification such as "Thu,Fri
354 2013-*-1,5 11:12:13" which refers to 11:12:13 of the first
355 or fifth day of any month of the year 2013, given that it is
356 a thursday or friday. This brings timer event support
357 considerably closer to cron's capabilities. For details on
358 the supported calendar time specification language see
361 * udev now supports a number of different naming policies for
362 network interfaces for predictable names, and a combination
363 of these policies is now the default. Please see this wiki
364 document for details:
366 http://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames
368 * Auke Kok's bootchart implementation has been added to the
369 systemd tree. It's an optional component that can graph the
370 boot in quite some detail. It's one of the best bootchart
371 implementations around and minimal in its code and
374 * nss-myhostname has been integrated into the systemd source
375 tree. nss-myhostname guarantees that the local hostname
376 always stays resolvable via NSS. It has been a weak
377 requirement of systemd-hostnamed since a long time, and
378 since its code is actually trivial we decided to just
379 include it in systemd's source tree. It can be turned off
380 with a configure switch.
382 * The read-ahead logic is now capable of properly detecting
383 whether a btrfs file system is on SSD or rotating media, in
384 order to optimize the read-ahead scheme. Previously, it was
385 only capable of detecting this on traditional file systems
388 * In udev, additional device properties are now read from the
389 IAB in addition to the OUI database. Also, Bluetooth company
390 identities are attached to the devices as well.
392 * In service files %U may be used as specifier that is
393 replaced by the configured user name of the service.
395 * nspawn may now be invoked without a controlling TTY. This
396 makes it suitable for invocation as its own service. This
397 may be used to set up a simple containerized server system
398 using only core OS tools.
400 * systemd and nspawn can now accept socket file descriptors
401 when they are started for socket activation. This enables
402 implementation of socket activated nspawn
403 containers. i.e. think about autospawning an entire OS image
404 when the first SSH or HTTP connection is received. We expect
405 that similar functionality will also be added to libvirt-lxc
408 * journalctl will now suppress ANSI color codes when
411 * systemctl will no longer show control group information for
412 a unit if a the control group is empty anyway.
414 * logind can now automatically suspend/hibernate/shutdown the
417 * /etc/machine-info and hostnamed now also expose the chassis
418 type of the system. This can be used to determine whether
419 the local system is a laptop, desktop, handset or
420 tablet. This information may either be configured by the
421 user/vendor or is automatically determined from ACPI and DMI
422 information if possible.
424 * A number of PolicyKit actions are now bound together with
425 "imply" rules. This should simplify creating UIs because
426 many actions will now authenticate similar ones as well.
428 * Unit files learnt a new condition ConditionACPower= which
429 may be used to conditionalize a unit depending on whether an
430 AC power source is connected or not, of whether the system
431 is running on battery power.
433 * systemctl gained a new "is-failed" verb that may be used in
434 shell scripts and suchlike to check whether a specific unit
435 is in the "failed" state.
437 * The EnvironmentFile= setting in unit files now supports file
438 globbing, and can hence be used to easily read a number of
439 environment files at once.
441 * systemd will no longer detect and recognize specific
442 distributions. All distribution-specific #ifdeffery has been
443 removed, systemd is now fully generic and
444 distribution-agnostic. Effectively, not too much is lost as
445 a lot of the code is still accessible via explicit configure
446 switches. However, support for some distribution specific
447 legacy configuration file formats has been dropped. We
448 recommend distributions to simply adopt the configuration
449 files everybody else uses now and convert the old
450 configuration from packaging scripts. Most distributions
451 already did that. If that's not possible or desirable,
452 distributions are welcome to forward port the specific
453 pieces of code locally from the git history.
455 * When logging a message about a unit systemd will now always
456 log the unit name in the message meta data.
458 * localectl will now also discover system locale data that is
459 not stored in locale archives, but directly unpacked.
461 * logind will no longer unconditionally use framebuffer
462 devices as seat masters, i.e. as devices that are required
463 to be existing before a seat is considered preset. Instead,
464 it will now look for all devices that are tagged as
465 "seat-master" in udev. By default framebuffer devices will
466 be marked as such, but depending on local systems other
467 devices might be marked as well. This may be used to
468 integrate graphics cards using closed source drivers (such
469 as NVidia ones) more nicely into logind. Note however, that
470 we recommend using the open source NVidia drivers instead,
471 and no udev rules for the closed-source drivers will be
472 shipped from us upstream.
474 Contributions from: Adam Williamson, Alessandro Crismani, Auke
475 Kok, Colin Walters, Daniel Wallace, Dave Reisner, David
476 Herrmann, David Strauss, Dimitrios Apostolou, Eelco Dolstra,
477 Eric Benoit, Giovanni Campagna, Hannes Reinecke, Henrik
478 Grindal Bakken, Hermann Gausterer, Kay Sievers, Lennart
479 Poettering, Lukas Nykryn, Mantas Mikulėnas, Marcel Holtmann,
480 Martin Pitt, Matthew Monaco, Michael Biebl, Michael Terry,
481 Michal Schmidt, Michal Sekletar, Michał Bartoszkiewicz, Oleg
482 Samarin, Pekka Lundstrom, Philip Nilsson, Ramkumar
483 Ramachandra, Richard Yao, Robert Millan, Sami Kerola, Shawn
484 Landden, Thomas Hindoe Paaboel Andersen, Thomas Jarosch,
485 Tollef Fog Heen, Tom Gundersen, Umut Tezduyar, Zbigniew
490 * udev gained support for loading additional device properties
491 from an indexed database that is keyed by vendor/product IDs
492 and similar device identifiers. For the beginning this
493 "hwdb" is populated with data from the well-known PCI and
494 USB database, but also includes PNP, ACPI and OID data. In
495 the longer run this indexed database shall grow into
496 becoming the one central database for non-essential
497 userspace device metadata. Previously, data from the PCI/USB
498 database was only attached to select devices, since the
499 lookup was a relatively expensive operation due to O(n) time
500 complexity (with n being the number of entries in the
501 database). Since this is now O(1), we decided to add in this
502 data for all devices where this is available, by
503 default. Note that the indexed database needs to be rebuilt
504 when new data files are installed. To achieve this you need
505 to update your packaging scripts to invoke "udevadm hwdb
506 --update" after installation of hwdb data files. For
507 RPM-based distributions we introduced the new
508 %udev_hwdb_update macro for this purpose.
510 * The Journal gained support for the "Message Catalog", an
511 indexed database to link up additional information with
512 journal entries. For further details please check:
514 http://www.freedesktop.org/wiki/Software/systemd/catalog
516 The indexed message catalog database also needs to be
517 rebuilt after installation of message catalog files. Use
518 "journalctl --update-catalog" for this. For RPM-based
519 distributions we introduced the %journal_catalog_update
520 macro for this purpose.
522 * The Python Journal bindings gained support for the standard
523 Python logging framework.
525 * The Journal API gained new functions for checking whether
526 the underlying file system of a journal file is capable of
527 properly reporting file change notifications, or whether
528 applications that want to reflect journal changes "live"
529 need to recheck journal files continously in appropriate
532 * It is now possible to set the "age" field for tmpfiles
533 entries to 0, indicating that files matching this entry
534 shall always be removed when the directories are cleaned up.
536 * coredumpctl gained a new "gdb" verb which invokes gdb
537 right-away on the selected coredump.
539 * There's now support for "hybrid sleep" on kernels that
540 support this, in addition to "suspend" and "hibernate". Use
541 "systemctl hybrid-sleep" to make use of this.
543 * logind's HandleSuspendKey= setting (and related settings)
544 now gained support for a new "lock" setting to simply
545 request the screen lock on all local sessions, instead of
546 actually executing a suspend or hibernation.
548 * systemd will now mount the EFI variables file system by
551 * Socket units now gained support for configuration of the
552 SMACK security label.
554 * timedatectl will now output the time of the last and next
555 daylight saving change.
557 * We dropped support for various legacy and distro-specific
558 concepts, such as insserv, early-boot SysV services
559 (i.e. those for non-standard runlevels such as 'b' or 'S')
560 or ArchLinux /etc/rc.conf support. We recommend the
561 distributions who still need support this to either continue
562 to maintain the necessary patches downstream, or find a
563 different solution. (Talk to us if you have questions!)
565 * Various systemd components will now bypass PolicyKit checks
566 for root and otherwise handle properly if PolicyKit is not
567 found to be around. This should fix most issues for
568 PolicyKit-less systems. Quite frankly this should have been
569 this way since day one. It is absolutely our intention to
570 make systemd work fine on PolicyKit-less systems, and we
571 consider it a bug if something doesn't work as it should if
572 PolicyKit is not around.
574 * For embedded systems it is now possible to build udev and
575 systemd without blkid and/or kmod support.
577 * "systemctl switch-root" is now capable of switching root
578 more than once. I.e. in addition to transitions from the
579 initrd to the host OS it is now possible to transition to
580 further OS images from the host. This is useful to implement
581 offline updating tools.
583 * Various other additions have been made to the RPM macros
584 shipped with systemd. Use %udev_rules_update() after
585 installing new udev rules files. %_udevhwdbdir,
586 %_udevrulesdir, %_journalcatalogdir, %_tmpfilesdir,
587 %_sysctldir are now available which resolve to the right
588 directories for packages to place various data files in.
590 * journalctl gained the new --full switch (in addition to
591 --all, to disable ellipsation for long messages.
593 Contributions from: Anders Olofsson, Auke Kok, Ben Boeckel,
594 Colin Walters, Cosimo Cecchi, Daniel Wallace, Dave Reisner,
595 Eelco Dolstra, Holger Hans Peter Freyther, Kay Sievers,
596 Chun-Yi Lee, Lekensteyn, Lennart Poettering, Mantas Mikulėnas,
597 Marti Raudsepp, Martin Pitt, Mauro Dreissig, Michael Biebl,
598 Michal Schmidt, Michal Sekletar, Miklos Vajna, Nis Martensen,
599 Oleksii Shevchuk, Olivier Brunel, Ramkumar Ramachandra, Thomas
600 Bächler, Thomas Hindoe Paaboel Andersen, Tom Gundersen, Tony
601 Camuso, Umut Tezduyar, Zbigniew Jędrzejewski-Szmek
605 * journalctl gained new --since= and --until= switches to
606 filter by time. It also now supports nice filtering for
607 units via --unit=/-u.
609 * Type=oneshot services may use ExecReload= and do the
612 * The journal daemon now supports time-based rotation and
613 vacuuming, in addition to the usual disk-space based
616 * The journal will now index the available field values for
617 each field name. This enables clients to show pretty drop
618 downs of available match values when filtering. The bash
619 completion of journalctl has been updated
620 accordingly. journalctl gained a new switch -F to list all
621 values a certain field takes in the journal database.
623 * More service events are now written as structured messages
624 to the journal, and made recognizable via message IDs.
626 * The timedated, localed and hostnamed mini-services which
627 previously only provided support for changing time, locale
628 and hostname settings from graphical DEs such as GNOME now
629 also have a minimal (but very useful) text-based client
630 utility each. This is probably the nicest way to changing
631 these settings from the command line now, especially since
632 it lists available options and is fully integrated with bash
635 * There's now a new tool "systemd-coredumpctl" to list and
636 extract coredumps from the journal.
638 * We now install a README each in /var/log/ and
639 /etc/rc.d/init.d explaining where the system logs and init
640 scripts went. This hopefully should help folks who go to
641 that dirs and look into the otherwise now empty void and
644 * When user-services are invoked (by systemd --user) the
645 $MANAGERPID env var is set to the PID of systemd.
647 * SIGRTMIN+24 when sent to a --user instance will now result
648 in immediate termination of systemd.
650 * gatewayd received numerous feature additions such as a
651 "follow" mode, for live syncing and filtering.
653 * browse.html now allows filtering and showing detailed
654 information on specific entries. Keyboard navigation and
655 mouse screen support has been added.
657 * gatewayd/journalctl now supports HTML5/JSON
658 Server-Sent-Events as output.
660 * The SysV init script compatibility logic will now
661 heuristically determine whether a script supports the
662 "reload" verb, and only then make this available as
665 * "systemctl status --follow" has been removed, use "journalctl
668 * journald.conf's RuntimeMinSize=, PersistentMinSize= settings
669 have been removed since they are hardly useful to be
672 * And I'd like to take the opportunity to specifically mention
673 Zbigniew for his great contributions. Zbigniew, you rock!
675 Contributions from: Andrew Eikum, Christian Hesse, Colin
676 Guthrie, Daniel J Walsh, Dave Reisner, Eelco Dolstra, Ferenc
677 Wágner, Kay Sievers, Lennart Poettering, Lukas Nykryn, Mantas
678 Mikulėnas, Martin Mikkelsen, Martin Pitt, Michael Olbrich,
679 Michael Stapelberg, Michal Schmidt, Sebastian Ott, Thomas
680 Bächler, Umut Tezduyar, Will Woods, Wulf C. Krueger, Zbigniew
681 Jędrzejewski-Szmek, Сковорода Никита Андреевич
685 * If /etc/vconsole.conf is non-existent or empty we will no
686 longer load any console font or key map at boot by
687 default. Instead the kernel defaults will be left
688 intact. This is definitely the right thing to do, as no
689 configuration should mean no configuration, and hard-coding
690 font names that are different on all archs is probably a bad
691 idea. Also, the kernel default key map and font should be
692 good enough for most cases anyway, and mostly identical to
693 the userspace fonts/key maps we previously overloaded them
694 with. If distributions want to continue to default to a
695 non-kernel font or key map they should ship a default
696 /etc/vconsole.conf with the appropriate contents.
698 Contributions from: Colin Walters, Daniel J Walsh, Dave
699 Reisner, Kay Sievers, Lennart Poettering, Lukas Nykryn, Tollef
700 Fog Heen, Tom Gundersen, Zbigniew Jędrzejewski-Szmek
704 * journalctl gained a new --cursor= switch to show entries
705 starting from the specified location in the journal.
707 * We now enforce a size limit on journal entry fields exported
708 with "-o json" in journalctl. Fields larger than 4K will be
709 assigned null. This can be turned off with --all.
711 * An (optional) journal gateway daemon is now available as
712 "systemd-journal-gatewayd.service". This service provides
713 access to the journal via HTTP and JSON. This functionality
714 will be used to implement live log synchronization in both
715 pull and push modes, but has various other users too, such
716 as easy log access for debugging of embedded devices. Right
717 now it is already useful to retrieve the journal via HTTP:
719 # systemctl start systemd-journal-gatewayd.service
720 # wget http://localhost:19531/entries
722 This will download the journal contents in a
723 /var/log/messages compatible format. The same as JSON:
725 # curl -H"Accept: application/json" http://localhost:19531/entries
727 This service is also accessible via a web browser where a
728 single static HTML5 app is served that uses the JSON logic
729 to enable the user to do some basic browsing of the
730 journal. This will be extended later on. Here's an example
731 screenshot of this app in its current state:
733 http://0pointer.de/public/journal-gatewayd
735 Contributions from: Kay Sievers, Lennart Poettering, Robert
736 Milasan, Tom Gundersen
740 * The bash completion logic is now available for journalctl
743 * We don't mount the "cpuset" controller anymore together with
744 "cpu" and "cpuacct", as "cpuset" groups generally cannot be
745 started if no parameters are assigned to it. "cpuset" hence
746 broke code that assumed it it could create "cpu" groups and
749 * journalctl -f will now subscribe to terminal size changes,
750 and line break accordingly.
752 Contributions from: Dave Reisner, Kay Sievers, Lennart
753 Poettering, Lukas Nykrynm, Mirco Tischler, Václav Pavlín
757 * nspawn will now create a symlink /etc/localtime in the
758 container environment, copying the host's timezone
759 setting. Previously this has been done via a bind mount, but
760 since symlinks cannot be bind mounted this has now been
761 changed to create/update the appropriate symlink.
763 * journalctl -n's line number argument is now optional, and
764 will default to 10 if omitted.
766 * journald will now log the maximum size the journal files may
767 take up on disk. This is particularly useful if the default
768 built-in logic of determining this parameter from the file
769 system size is used. Use "systemctl status
770 systemd-journald.service" to see this information.
772 * The multi-seat X wrapper tool has been stripped down. As X
773 is now capable of enumerating graphics devices via udev in a
774 seat-aware way the wrapper is not strictly necessary
775 anymore. A stripped down temporary stop-gap is still shipped
776 until the upstream display managers have been updated to
777 fully support the new X logic. Expect this wrapper to be
778 removed entirely in one of the next releases.
780 * HandleSleepKey= in logind.conf has been split up into
781 HandleSuspendKey= and HandleHibernateKey=. The old setting
782 is not available anymore. X11 and the kernel are
783 distuingishing between these keys and we should too. This
784 also means the inhibition lock for these keys has been split
787 Contributions from: Dave Airlie, Eelco Dolstra, Lennart
788 Poettering, Lukas Nykryn, Václav Pavlín
792 * Whenever a unit changes state we'll now log this to the
793 journal and show along the unit's own log output in
796 * ConditionPathIsMountPoint= can now properly detect bind
797 mount points too. (Previously, a bind mount of one file
798 system to another place in the same file system could not be
799 detected as mount, since they shared struct stat's st_dev
802 * We will now mount the cgroup controllers cpu, cpuacct,
803 cpuset and the controllers net_cls, net_prio together by
806 * nspawn containers will now have a virtualized boot
807 ID. (i.e. /proc/sys/kernel/random/boot_id is now mounted
808 over with a randomized ID at container initialization). This
809 has the effect of making "journalctl -b" do the right thing
812 * The JSON output journal serialization has been updated not
813 to generate "endless" list objects anymore, but rather one
814 JSON object per line. This is more in line how most JSON
815 parsers expect JSON objects. The new output mode
816 "json-pretty" has been added to provide similar output, but
817 neatly aligned for readability by humans.
819 * We dropped all explicit sync() invocations in the shutdown
820 code. The kernel does this implicitly anyway in the kernel
821 reboot() syscall. halt(8)'s -n option is now a compatibility
824 * We now support virtualized reboot() in containers, as
825 supported by newer kernels. We will fall back to exit() if
826 CAP_SYS_REBOOT is not available to the container. Also,
827 nspawn makes use of this now and will actually reboot the
828 container if the containerized OS asks for that.
830 * journalctl will only show local log output by default
831 now. Use --merge (-m) to show remote log output, too.
833 * libsystemd-journal gained the new sd_journal_get_usage()
834 call to determine the current disk usage of all journal
835 files. This is exposed in the new "journalctl --disk-usage"
838 * journald gained a new configuration setting SplitMode= in
839 journald.conf which may be used to control how user journals
840 are split off. See journald.conf(5) for details.
842 * A new condition type ConditionFileNotEmpty= has been added.
844 * tmpfiles' "w" lines now support file globbing, to write
845 multiple files at once.
847 * We added Python bindings for the journal submission
848 APIs. More Python APIs for a number of selected APIs will
849 likely follow. Note that we intend to add native bindings
850 only for the Python language, as we consider it common
851 enough to deserve bindings shipped within systemd. There are
852 various projects outside of systemd that provide bindings
853 for languages such as PHP or Lua.
855 * Many conditions will now resolve specifiers such as %i. In
856 addition, PathChanged= and related directives of .path units
857 now support specifiers as well.
859 * There's now a new RPM macro definition for the system preset
862 * journald will now warn if it can't foward a message to the
863 syslog daemon because it's socket is full.
865 * timedated will no longer write or process /etc/timezone,
866 except on Debian. As we do not support late mounted /usr
867 anymore /etc/localtime always being a symlink is now safe,
868 and hence the information in /etc/timezone is not necessary
871 * logind will now always reserve one VT for a text getty (VT6
872 by default). Previously if more than 6 X sessions where
873 started they took up all the VTs with auto-spawned gettys,
874 so that no text gettys were available anymore.
876 * udev will now automatically inform the btrfs kernel logic
877 about btrfs RAID components showing up. This should make
878 simple hotplug based btrfs RAID assembly work.
880 * PID 1 will now increase its RLIMIT_NOFILE to 64K by default
881 (but not for its children which will stay at the kernel
882 default). This should allow setups with a lot more listening
885 * systemd will now always pass the configured timezone to the
886 kernel at boot. timedated will do the same when the timezone
889 * logind's inhibition logic has been updated. By default,
890 logind will now handle the lid switch, the power and sleep
891 keys all the time, even in graphical sessions. If DEs want
892 to handle these events on their own they should take the new
893 handle-power-key, handle-sleep-key and handle-lid-switch
894 inhibitors during their runtime. A simple way to achiveve
895 that is to invoke the DE wrapped in an invocation of:
897 systemd-inhibit --what=handle-power-key:handle-sleep-key:handle-lid-switch ...
899 * Access to unit operations is now checked via SELinux taking
900 the unit file label and client process label into account.
902 * systemd will now notify the administrator in the journal
903 when he over-mounts a non-empty directory.
905 * There are new specifiers that are resolved in unit files,
906 for the host name (%H), the machine ID (%m) and the boot ID
909 Contributions from: Allin Cottrell, Auke Kok, Brandon Philips,
910 Colin Guthrie, Colin Walters, Daniel J Walsh, Dave Reisner,
911 Eelco Dolstra, Jan Engelhardt, Kay Sievers, Lennart
912 Poettering, Lucas De Marchi, Lukas Nykryn, Mantas Mikulėnas,
913 Martin Pitt, Matthias Clasen, Michael Olbrich, Pierre Schmitz,
914 Shawn Landden, Thomas Hindoe Paaboel Andersen, Tom Gundersen,
915 Václav Pavlín, Yin Kangkai, Zbigniew Jędrzejewski-Szmek
919 * Support for reading structured kernel messages from
920 /dev/kmsg has now been added and is enabled by default.
922 * Support for reading kernel messages from /proc/kmsg has now
923 been removed. If you want kernel messages in the journal
924 make sure to run a recent kernel (>= 3.5) that supports
925 reading structured messages from /dev/kmsg (see
926 above). /proc/kmsg is now exclusive property of classic
927 syslog daemons again.
929 * The libudev API gained the new
930 udev_device_new_from_device_id() call.
932 * The logic for file system namespace (ReadOnlyDirectory=,
933 ReadWriteDirectoy=, PrivateTmp=) has been reworked not to
934 require pivot_root() anymore. This means fewer temporary
935 directories are created below /tmp for this feature.
937 * nspawn containers will now see and receive all submounts
938 made on the host OS below the root file system of the
941 * Forward Secure Sealing is now supported for Journal files,
942 which provide cryptographical sealing of journal files so
943 that attackers cannot alter log history anymore without this
944 being detectable. Lennart will soon post a blog story about
945 this explaining it in more detail.
947 * There are two new service settings RestartPreventExitStatus=
948 and SuccessExitStatus= which allow configuration of exit
949 status (exit code or signal) which will be excepted from the
950 restart logic, resp. consider successful.
952 * journalctl gained the new --verify switch that can be used
953 to check the integrity of the structure of journal files and
954 (if Forward Secure Sealing is enabled) the contents of
957 * nspawn containers will now be run with /dev/stdin, /dev/fd/
958 and similar symlinks pre-created. This makes running shells
959 as container init process a lot more fun.
961 * The fstab support can now handle PARTUUID= and PARTLABEL=
964 * A new ConditionHost= condition has been added to match
965 against the hostname (with globs) and machine ID. This is
966 useful for clusters where a single OS image is used to
967 provision a large number of hosts which shall run slightly
968 different sets of services.
970 * Services which hit the restart limit will now be placed in a
973 Contributions from: Bertram Poettering, Dave Reisner, Huang
974 Hang, Kay Sievers, Lennart Poettering, Lukas Nykryn, Martin
975 Pitt, Simon Peeters, Zbigniew Jędrzejewski-Szmek
979 * When running in --user mode systemd will now become a
980 subreaper (PR_SET_CHILD_SUBREAPER). This should make the ps
981 tree a lot more organized.
983 * A new PartOf= unit dependency type has been introduced that
984 may be used to group services in a natural way.
986 * "systemctl enable" may now be used to enable instances of
989 * journalctl now prints error log levels in red, and
990 warning/notice log levels in bright white. It also supports
991 filtering by log level now.
993 * cgtop gained a new -n switch (similar to top), to configure
994 the maximum number of iterations to run for. It also gained
995 -b, to run in batch mode (accepting no input).
997 * The suffix ".service" may now be ommited on most systemctl
998 command lines involving service unit names.
1000 * There's a new bus call in logind to lock all sessions, as
1001 well as a loginctl verb for it "lock-sessions".
1003 * libsystemd-logind.so gained a new call sd_journal_perror()
1004 that works similar to libc perror() but logs to the journal
1005 and encodes structured information about the error number.
1007 * /etc/crypttab entries now understand the new keyfile-size=
1010 * shutdown(8) now can send a (configurable) wall message when
1011 a shutdown is cancelled.
1013 * The mount propagation mode for the root file system will now
1014 default to "shared", which is useful to make containers work
1015 nicely out-of-the-box so that they receive new mounts from
1016 the host. This can be undone locally by running "mount
1017 --make-rprivate /" if needed.
1019 * The prefdm.service file has been removed. Distributions
1020 should maintain this unit downstream if they intend to keep
1021 it around. However, we recommend writing normal unit files
1022 for display managers instead.
1024 * Since systemd is a crucial part of the OS we will now
1025 default to a number of compiler switches that improve
1026 security (hardening) such as read-only relocations, stack
1027 protection, and suchlike.
1029 * The TimeoutSec= setting for services is now split into
1030 TimeoutStartSec= and TimeoutStopSec= to allow configuration
1031 of individual time outs for the start and the stop phase of
1034 Contributions from: Artur Zaprzala, Arvydas Sidorenko, Auke
1035 Kok, Bryan Kadzban, Dave Reisner, David Strauss, Harald Hoyer,
1036 Jim Meyering, Kay Sievers, Lennart Poettering, Mantas
1037 Mikulėnas, Martin Pitt, Michal Schmidt, Michal Sekletar, Peter
1038 Alfredsen, Shawn Landden, Simon Peeters, Terence Honles, Tom
1039 Gundersen, Zbigniew Jędrzejewski-Szmek
1043 * The journal and id128 C APIs are now fully documented as man
1046 * Extra safety checks have been added when transitioning from
1047 the initial RAM disk to the main system to avoid accidental
1050 * /etc/crypttab entries now understand the new keyfile-offset=
1053 * systemctl -t can now be used to filter by unit load state.
1055 * The journal C API gained the new sd_journal_wait() call to
1056 make writing synchronous journal clients easier.
1058 * journalctl gained the new -D switch to show journals from a
1061 * journalctl now displays a special marker between log
1062 messages of two different boots.
1064 * The journal is now explicitly flushed to /var via a service
1065 systemd-journal-flush.service, rather than implicitly simply
1066 by seeing /var/log/journal to be writable.
1068 * journalctl (and the journal C APIs) can now match for much
1069 more complex expressions, with alternatives and
1072 * When transitioning from the initial RAM disk to the main
1073 system we will now kill all processes in a killing spree to
1074 ensure no processes stay around by accident.
1076 * Three new specifiers may be used in unit files: %u, %h, %s
1077 resolve to the user name, user home directory resp. user
1078 shell. This is useful for running systemd user instances.
1080 * We now automatically rotate journal files if their data
1081 object hash table gets a fill level > 75%. We also size the
1082 hash table based on the configured maximum file size. This
1083 together should lower hash collisions drastically and thus
1084 speed things up a bit.
1086 * journalctl gained the new "--header" switch to introspect
1087 header data of journal files.
1089 * A new setting SystemCallFilters= has been added to services
1090 which may be used to apply blacklists or whitelists to
1091 system calls. This is based on SECCOMP Mode 2 of Linux 3.5.
1093 * nspawn gained a new --link-journal= switch (and quicker: -j)
1094 to link the container journal with the host. This makes it
1095 very easy to centralize log viewing on the host for all
1096 guests while still keeping the journal files separated.
1098 * Many bugfixes and optimizations
1100 Contributions from: Auke Kok, Eelco Dolstra, Harald Hoyer, Kay
1101 Sievers, Lennart Poettering, Malte Starostik, Paul Menzel, Rex
1102 Tsai, Shawn Landden, Tom Gundersen, Ville Skyttä, Zbigniew
1107 * Several tools now understand kernel command line arguments,
1108 which are only read when run in an initial RAM disk. They
1109 usually follow closely their normal counterparts, but are
1112 * There's a new tool to analyze the readahead files that are
1113 automatically generated at boot. Use:
1115 /usr/lib/systemd/systemd-readahead analyze /.readahead
1117 * We now provide an early debug shell on tty9 if this enabled. Use:
1119 systemctl enable debug-shell.service
1121 * All plymouth related units have been moved into the Plymouth
1122 package. Please make sure to upgrade your Plymouth version
1125 * systemd-tmpfiles now supports getting passed the basename of
1126 a configuration file only, in which case it will look for it
1127 in all appropriate directories automatically.
1129 * udevadm info now takes a /dev or /sys path as argument, and
1130 does the right thing. Example:
1132 udevadm info /dev/sda
1133 udevadm info /sys/class/block/sda
1135 * systemctl now prints a warning if a unit is stopped but a
1136 unit that might trigger it continues to run. Example: a
1137 service is stopped but the socket that activates it is left
1140 * "systemctl status" will now mention if the log output was
1141 shortened due to rotation since a service has been started.
1143 * The journal API now exposes functions to determine the
1144 "cutoff" times due to rotation.
1146 * journald now understands SIGUSR1 and SIGUSR2 for triggering
1147 immediately flushing of runtime logs to /var if possible,
1148 resp. for triggering immediate rotation of the journal
1151 * It is now considered an error if a service is attempted to
1152 be stopped that is not loaded.
1154 * XDG_RUNTIME_DIR now uses numeric UIDs instead of usernames.
1156 * systemd-analyze now supports Python 3
1158 * tmpfiles now supports cleaning up directories via aging
1159 where the first level dirs are always kept around but
1160 directories beneath it automatically aged. This is enabled
1161 by prefixing the age field with '~'.
1163 * Seat objects now expose CanGraphical, CanTTY properties
1164 which is required to deal with very fast bootups where the
1165 display manager might be running before the graphics drivers
1166 completed initialization.
1168 * Seat objects now expose a State property.
1170 * We now include RPM macros for service enabling/disabling
1171 based on the preset logic. We recommend RPM based
1172 distributions to make use of these macros if possible. This
1173 makes it simpler to reuse RPM spec files across
1176 * We now make sure that the collected systemd unit name is
1177 always valid when services log to the journal via
1180 * There's a new man page kernel-command-line(7) detailing all
1181 command line options we understand.
1183 * The fstab generator may now be disabled at boot by passing
1184 fstab=0 on the kernel command line.
1186 * A new kernel command line option modules-load= is now understood
1187 to load a specific kernel module statically, early at boot.
1189 * Unit names specified on the systemctl command line are now
1190 automatically escaped as needed. Also, if file system or
1191 device paths are specified they are automatically turned
1192 into the appropriate mount or device unit names. Example:
1194 systemctl status /home
1195 systemctl status /dev/sda
1197 * The SysVConsole= configuration option has been removed from
1198 system.conf parsing.
1200 * The SysV search path is no longer exported on the D-Bus
1203 * The Names= option is been removed from unit file parsing.
1205 * There's a new man page bootup(7) detailing the boot process.
1207 * Every unit and every generator we ship with systemd now
1208 comes with full documentation. The self-explanatory boot is
1211 * A couple of services gained "systemd-" prefixes in their
1212 name if they wrap systemd code, rather than only external
1213 code. Among them fsck@.service which is now
1214 systemd-fsck@.service.
1216 * The HaveWatchdog property has been removed from the D-Bus
1219 * systemd.confirm_spawn= on the kernel command line should now
1222 * There's a new man page crypttab(5) which details all options
1223 we actually understand.
1225 * systemd-nspawn gained a new --capability= switch to pass
1226 additional capabilities to the container.
1228 * timedated will now read known NTP implementation unit names
1229 from /usr/lib/systemd/ntp-units.d/*.list,
1230 systemd-timedated-ntp.target has been removed.
1232 * journalctl gained a new switch "-b" that lists log data of
1233 the current boot only.
1235 * The notify socket is in the abstract namespace again, in
1236 order to support daemons which chroot() at start-up.
1238 * There is a new Storage= configuration option for journald
1239 which allows configuration of where log data should go. This
1240 also provides a way to disable journal logging entirely, so
1241 that data collected is only forwarded to the console, the
1242 kernel log buffer or another syslog implementation.
1244 * Many bugfixes and optimizations
1246 Contributions from: Auke Kok, Colin Guthrie, Dave Reisner,
1247 David Strauss, Eelco Dolstra, Kay Sievers, Lennart Poettering,
1248 Lukas Nykryn, Michal Schmidt, Michal Sekletar, Paul Menzel,
1249 Shawn Landden, Tom Gundersen
1253 * "systemctl help <unit>" now shows the man page if one is
1256 * Several new man pages have been added.
1258 * MaxLevelStore=, MaxLevelSyslog=, MaxLevelKMsg=,
1259 MaxLevelConsole= can now be specified in
1260 journald.conf. These options allow reducing the amount of
1261 data stored on disk or forwarded by the log level.
1263 * TimerSlackNSec= can now be specified in system.conf for
1264 PID1. This allows system-wide power savings.
1266 Contributions from: Dave Reisner, Kay Sievers, Lauri Kasanen,
1267 Lennart Poettering, Malte Starostik, Marc-Antoine Perennou,
1272 * logind is now capable of (optionally) handling power and
1273 sleep keys as well as the lid switch.
1275 * journalctl now understands the syntax "journalctl
1276 /usr/bin/avahi-daemon" to get all log output of a specific
1279 * CapabilityBoundingSet= in system.conf now also influences
1280 the capability bound set of usermode helpers of the kernel.
1282 Contributions from: Daniel Drake, Daniel J. Walsh, Gert
1283 Michael Kulyk, Harald Hoyer, Jean Delvare, Kay Sievers,
1284 Lennart Poettering, Matthew Garrett, Matthias Clasen, Paul
1285 Menzel, Shawn Landden, Tero Roponen, Tom Gundersen
1289 * Note that we skipped 139 releases here in order to set the
1290 new version to something that is greater than both udev's
1291 and systemd's most recent version number.
1293 * udev: all udev sources are merged into the systemd source tree now.
1294 All future udev development will happen in the systemd tree. It
1295 is still fully supported to use the udev daemon and tools without
1296 systemd running, like in initramfs or other init systems. Building
1297 udev though, will require the *build* of the systemd tree, but
1298 udev can be properly *run* without systemd.
1300 * udev: /lib/udev/devices/ are not read anymore; systemd-tmpfiles
1301 should be used to create dead device nodes as workarounds for broken
1304 * udev: RUN+="socket:..." and udev_monitor_new_from_socket() is
1305 no longer supported. udev_monitor_new_from_netlink() needs to be
1306 used to subscribe to events.
1308 * udev: when udevd is started by systemd, processes which are left
1309 behind by forking them off of udev rules, are unconditionally cleaned
1310 up and killed now after the event handling has finished. Services or
1311 daemons must be started as systemd services. Services can be
1312 pulled-in by udev to get started, but they can no longer be directly
1313 forked by udev rules.
1315 * udev: the daemon binary is called systemd-udevd now and installed
1316 in /usr/lib/systemd/. Standalone builds or non-systemd systems need
1317 to adapt to that, create symlink, or rename the binary after building
1320 * libudev no longer provides these symbols:
1321 udev_monitor_from_socket()
1322 udev_queue_get_failed_list_entry()
1323 udev_get_{dev,sys,run}_path()
1324 The versions number was bumped and symbol versioning introduced.
1326 * systemd-loginctl and systemd-journalctl have been renamed
1327 to loginctl and journalctl to match systemctl.
1329 * The config files: /etc/systemd/systemd-logind.conf and
1330 /etc/systemd/systemd-journald.conf have been renamed to
1331 logind.conf and journald.conf. Package updates should rename
1332 the files to the new names on upgrade.
1334 * For almost all files the license is now LGPL2.1+, changed
1335 from the previous GPL2.0+. Exceptions are some minor stuff
1336 of udev (which will be changed to LGPL2.1 eventually, too),
1337 and the MIT licensed sd-daemon.[ch] library that is suitable
1338 to be used as drop-in files.
1340 * systemd and logind now handle system sleep states, in
1341 particular suspending and hibernating.
1343 * logind now implements a sleep/shutdown/idle inhibiting logic
1344 suitable for a variety of uses. Soonishly Lennart will blog
1345 about this in more detail.
1347 * var-run.mount and var-lock.mount are no longer provided
1348 (which prevously bind mounted these directories to their new
1349 places). Distributions which have not converted these
1350 directories to symlinks should consider stealing these files
1351 from git history and add them downstream.
1353 * We introduced the Documentation= field for units and added
1354 this to all our shipped units. This is useful to make it
1355 easier to explore the boot and the purpose of the various
1358 * All smaller setup units (such as
1359 systemd-vconsole-setup.service) now detect properly if they
1360 are run in a container and are skipped when
1361 appropriate. This guarantees an entirely noise-free boot in
1362 Linux container environments such as systemd-nspawn.
1364 * A framework for implementing offline system updates is now
1365 integrated, for details see:
1366 http://freedesktop.org/wiki/Software/systemd/SystemUpdates
1368 * A new service type Type=idle is available now which helps us
1369 avoiding ugly interleaving of getty output and boot status
1372 * There's now a system-wide CapabilityBoundingSet= option to
1373 globally reduce the set of capabilities for the
1374 system. This is useful to drop CAP_SYS_MKNOD, CAP_SYS_RAWIO,
1375 CAP_NET_RAW, CAP_SYS_MODULE, CAP_SYS_TIME, CAP_SYS_PTRACE or
1376 even CAP_NET_ADMIN system-wide for secure systems.
1378 * There are now system-wide DefaultLimitXXX= options to
1379 globally change the defaults of the various resource limits
1380 for all units started by PID 1.
1382 * Harald Hoyer's systemd test suite has been integrated into
1383 systemd which allows easy testing of systemd builds in qemu
1384 and nspawn. (This is really awesome! Ask us for details!)
1386 * The fstab parser is now implemented as generator, not inside
1389 * systemctl will now warn you if .mount units generated from
1390 /etc/fstab are out of date due to changes in fstab that
1391 haven't been read by systemd yet.
1393 * systemd is now suitable for usage in initrds. Dracut has
1394 already been updated to make use of this. With this in place
1395 initrds get a slight bit faster but primarily are much
1396 easier to introspect and debug since "systemctl status" in
1397 the host system can be used to introspect initrd services,
1398 and the journal from the initrd is kept around too.
1400 * systemd-delta has been added, a tool to explore differences
1401 between user/admin configuration and vendor defaults.
1403 * PrivateTmp= now affects both /tmp and /var/tmp.
1405 * Boot time status messages are now much prettier and feature
1406 proper english language. Booting up systemd has never been
1409 * Read-ahead pack files now include the inode number of all
1410 files to pre-cache. When the inode changes the pre-caching
1411 is not attempted. This should be nicer to deal with updated
1412 packages which might result in changes of read-ahead
1415 * We now temporaritly lower the kernel's read_ahead_kb variable
1416 when collecting read-ahead data to ensure the kernel's
1417 built-in read-ahead does not add noise to our measurements
1418 of necessary blocks to pre-cache.
1420 * There's now RequiresMountsFor= to add automatic dependencies
1421 for all mounts necessary for a specific file system path.
1423 * MountAuto= and SwapAuto= have been removed from
1424 system.conf. Mounting file systems at boot has to take place
1427 * nspawn now learned a new switch --uuid= to set the machine
1428 ID on the command line.
1430 * nspawn now learned the -b switch to automatically search
1433 * vt102 is now the default TERM for serial TTYs, upgraded from
1436 * systemd-logind now works on VT-less systems.
1438 * The build tree has been reorganized. The individual
1439 components now have directories of their own.
1441 * A new condition type ConditionPathIsReadWrite= is now available.
1443 * nspawn learned the new -C switch to create cgroups for the
1444 container in other hierarchies.
1446 * We now have support for hardware watchdogs, configurable in
1449 * The scheduled shutdown logic now has a public API.
1451 * We now mount /tmp as tmpfs by default, but this can be
1452 masked and /etc/fstab can override it.
1454 * Since udisks doesn't make use of /media anymore we are not
1455 mounting a tmpfs on it anymore.
1457 * journalctl gained a new --local switch to only interleave
1458 locally generated journal files.
1460 * We can now load the IMA policy at boot automatically.
1462 * The GTK tools have been split off into a systemd-ui.
1464 Contributions from: Andreas Schwab, Auke Kok, Ayan George,
1465 Colin Guthrie, Daniel Mack, Dave Reisner, David Ward, Elan
1466 Ruusamäe, Frederic Crozat, Gergely Nagy, Guillermo Vidal,
1467 Hannes Reinecke, Harald Hoyer, Javier Jardón, Kay Sievers,
1468 Lennart Poettering, Lucas De Marchi, Léo Gillot-Lamure,
1469 Marc-Antoine Perennou, Martin Pitt, Matthew Monaco, Maxim
1470 A. Mikityanskiy, Michael Biebl, Michael Olbrich, Michal
1471 Schmidt, Nis Martensen, Patrick McCarty, Roberto Sassu, Shawn
1472 Landden, Sjoerd Simons, Sven Anders, Tollef Fog Heen, Tom
1477 * This is mostly a bugfix release
1479 * Support optional initialization of the machine ID from the
1480 KVM or container configured UUID.
1482 * Support immediate reboots with "systemctl reboot -ff"
1484 * Show /etc/os-release data in systemd-analyze output
1486 * Many bugfixes for the journal, including endianess fixes and
1487 ensuring that disk space enforcement works
1489 * sd-login.h is C++ comptaible again
1491 * Extend the /etc/os-release format on request of the Debian
1494 * We now refuse non-UTF8 strings used in various configuration
1495 and unit files. This is done to ensure we don't pass invalid
1496 data over D-Bus or expose it elsewhere.
1498 * Register Mimo USB Screens as suitable for automatic seat
1501 * Read SELinux client context from journal clients in a race
1504 * Reorder configuration file lookup order. /etc now always
1505 overrides /run in order to allow the administrator to always
1506 and unconditionally override vendor supplied or
1507 automatically generated data.
1509 * The various user visible bits of the journal now have man
1510 pages. We still lack man pages for the journal API calls
1513 * We now ship all man pages in HTML format again in the
1516 Contributions from: Dave Reisner, Dirk Eibach, Frederic
1517 Crozat, Harald Hoyer, Kay Sievers, Lennart Poettering, Marti
1518 Raudsepp, Michal Schmidt, Shawn Landden, Tero Roponen, Thierry
1523 * This is mostly a bugfix release
1525 * systems lacking /etc/os-release are no longer supported.
1527 * Various functionality updates to libsystemd-login.so
1529 * Track class of PAM logins to distuingish greeters from
1532 Contributions from: Kay Sievers, Lennart Poettering, Michael
1537 * This is an important bugfix release for v41.
1539 * Building man pages is now optional which should be useful
1540 for those building systemd from git but unwilling to install
1543 * Watchdog support for supervising services is now usable. In
1544 a future release support for hardware watchdogs
1545 (i.e. /dev/watchdog) will be added building on this.
1547 * Service start rate limiting is now configurable and can be
1548 turned off per service. When a start rate limit is hit a
1549 reboot can automatically be triggered.
1551 * New CanReboot(), CanPowerOff() bus calls in systemd-logind.
1553 Contributions from: Benjamin Franzke, Bill Nottingham,
1554 Frederic Crozat, Lennart Poettering, Michael Olbrich, Michal
1555 Schmidt, Michał Górny, Piotr Drąg
1559 * The systemd binary is installed /usr/lib/systemd/systemd now;
1560 An existing /sbin/init symlink needs to be adapted with the
1563 * The code that loads kernel modules has been ported to invoke
1564 libkmod directly, instead of modprobe. This means we do not
1565 support systems with module-init-tools anymore.
1567 * Watchdog support is now already useful, but still not
1570 * A new kernel command line option systemd.setenv= is
1571 understood to set system wide environment variables
1572 dynamically at boot.
1574 * We now limit the set of capabilities of systemd-journald.
1576 * We now set SIGPIPE to ignore by default, since it only is
1577 useful in shell pipelines, and has little use in general
1578 code. This can be disabled with IgnoreSIPIPE=no in unit
1581 Contributions from: Benjamin Franzke, Kay Sievers, Lennart
1582 Poettering, Michael Olbrich, Michal Schmidt, Tom Gundersen,
1587 * This is mostly a bugfix release
1589 * We now expose the reason why a service failed in the
1590 "Result" D-Bus property.
1592 * Rudimentary service watchdog support (will be completed over
1593 the next few releases.)
1595 * When systemd forks off in order execute some service we will
1596 now immediately changes its argv[0] to reflect which process
1597 it will execute. This is useful to minimize the time window
1598 with a generic argv[0], which makes bootcharts more useful
1600 Contributions from: Alvaro Soliverez, Chris Paulson-Ellis, Kay
1601 Sievers, Lennart Poettering, Michael Olbrich, Michal Schmidt,
1602 Mike Kazantsev, Ray Strode
1606 * This is mostly a test release, but incorporates many
1609 * New systemd-cgtop tool to show control groups by their
1612 * Linking against libacl for ACLs is optional again. If
1613 disabled, support tracking device access for active logins
1614 goes becomes unavailable, and so does access to the user
1615 journals by the respective users.
1617 * If a group "adm" exists, journal files are automatically
1618 owned by them, thus allow members of this group full access
1619 to the system journal as well as all user journals.
1621 * The journal now stores the SELinux context of the logging
1622 client for all entries.
1624 * Add C++ inclusion guards to all public headers
1626 * New output mode "cat" in the journal to print only text
1627 messages, without any meta data like date or time.
1629 * Include tiny X server wrapper as a temporary stop-gap to
1630 teach XOrg udev display enumeration. This is used by display
1631 managers such as gdm, and will go away as soon as XOrg
1632 learned native udev hotplugging for display devices.
1634 * Add new systemd-cat tool for executing arbitrary programs
1635 with STDERR/STDOUT connected to the journal. Can also act as
1636 BSD logger replacement, and does so by default.
1638 * Optionally store all locally generated coredumps in the
1639 journal along with meta data.
1641 * systemd-tmpfiles learnt four new commands: n, L, c, b, for
1642 writing short strings to files (for usage for /sys), and for
1643 creating symlinks, character and block device nodes.
1645 * New unit file option ControlGroupPersistent= to make cgroups
1646 persistent, following the mechanisms outlined in
1647 http://www.freedesktop.org/wiki/Software/systemd/PaxControlGroups
1649 * Support multiple local RTCs in a sane way
1651 * No longer monopolize IO when replaying readahead data on
1652 rotating disks, since we might starve non-file-system IO to
1653 death, since fanotify() will not see accesses done by blkid,
1656 * Don't show kernel threads in systemd-cgls anymore, unless
1657 requested with new -k switch.
1659 Contributions from: Dan Horák, Kay Sievers, Lennart
1660 Poettering, Michal Schmidt
1664 * This is mostly a test release, but incorporates many
1667 * The git repository moved to:
1668 git://anongit.freedesktop.org/systemd/systemd
1669 ssh://git.freedesktop.org/git/systemd/systemd
1671 * First release with the journal
1672 http://0pointer.de/blog/projects/the-journal.html
1674 * The journal replaces both systemd-kmsg-syslogd and
1675 systemd-stdout-bridge.
1677 * New sd_pid_get_unit() API call in libsystemd-logind
1679 * Many systemadm clean-ups
1681 * Introduce remote-fs-pre.target which is ordered before all
1682 remote mounts and may be used to start services before all
1685 * Added Mageia support
1687 * Add bash completion for systemd-loginctl
1689 * Actively monitor PID file creation for daemons which exit in
1690 the parent process before having finished writing the PID
1691 file in the daemon process. Daemons which do this need to be
1692 fixed (i.e. PID file creation must have finished before the
1693 parent exits), but we now react a bit more gracefully to them.
1695 * Add colourful boot output, mimicking the well-known output
1696 of existing distributions.
1698 * New option PassCredentials= for socket units, for
1699 compatibility with a recent kernel ABI breakage.
1701 * /etc/rc.local is now hooked in via a generator binary, and
1702 thus will no longer act as synchronization point during
1705 * systemctl list-unit-files now supports --root=.
1707 * systemd-tmpfiles now understands two new commands: z, Z for
1708 relabelling files according to the SELinux database. This is
1709 useful to apply SELinux labels to specific files in /sys,
1712 * Output of SysV services is now forwarded to both the console
1713 and the journal by default, not only just the console.
1715 * New man pages for all APIs from libsystemd-login.
1717 * The build tree got reorganized and a the build system is a
1718 lot more modular allowing embedded setups to specifically
1719 select the components of systemd they are interested in.
1721 * Support for Linux systems lacking the kernel VT subsystem is
1724 * configure's --with-rootdir= got renamed to
1725 --with-rootprefix= to follow the naming used by udev and
1728 * Unless specified otherwise we'll now install to /usr instead
1729 of /usr/local by default.
1731 * Processes with '@' in argv[0][0] are now excluded from the
1732 final shut-down killing spree, following the logic explained
1734 http://www.freedesktop.org/wiki/Software/systemd/RootStorageDaemons
1736 * All processes remaining in a service cgroup when we enter
1737 the START or START_PRE states are now killed with
1738 SIGKILL. That means it is no longer possible to spawn
1739 background processes from ExecStart= lines (which was never
1740 supported anyway, and bad style).
1742 * New PropagateReloadTo=/PropagateReloadFrom= options to bind
1743 reloading of units together.
1745 Contributions from: Bill Nottingham, Daniel J. Walsh, Dave
1746 Reisner, Dexter Morgan, Gregs Gregs, Jonathan Nieder, Kay
1747 Sievers, Lennart Poettering, Michael Biebl, Michal Schmidt,
1748 Michał Górny, Ran Benita, Thomas Jarosch, Tim Waugh, Tollef
1749 Fog Heen, Tom Gundersen, Zbigniew Jędrzejewski-Szmek