Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-11-23 | util: split off time related calls from util.[ch] into time-util.[ch] | Lennart Poettering | |
2012-11-23 | test: extend calendarspec test a bit | Lennart Poettering | |
2012-11-23 | timedatectl: improve english language DST change texts a bit | Lennart Poettering | |
2012-11-23 | update TODO | Lennart Poettering | |
2012-11-23 | timer: implement calendar time events | Lennart Poettering | |
2012-11-23 | man: clarify why User=/Group= don't work with mount units | Lennart Poettering | |
2012-11-23 | journal: fix SO_PASSSEC invocation | Lennart Poettering | |
Spotted by Lukas Nykryn | |||
2012-11-23 | update TODO | Lennart Poettering | |
2012-11-23 | timedatectl: show both current actual timezone name and UTC distance in ↵ | Lennart Poettering | |
TImezone field | |||
2012-11-23 | timedatctl: bring manual strftime in sync with format_timestamp() | Lennart Poettering | |
2012-11-23 | util: drop "," between week day and date when formatting timestamps | Lennart Poettering | |
The glibc default (as shown by the command line tool "date") doesn't put a comma there, and so we shouldn't either. | |||
2012-11-23 | udev: net_id - read ACPI _SUN -- slot user number | Kay Sievers | |
2012-11-23 | cryptsetup-generator: state file name in error messages | Michal Schmidt | |
2012-11-23 | cryptsetup-generator: use log_oom() everywhere | Michal Schmidt | |
2012-11-23 | udev: path_id - handle Hyper-V devices | Hannes Reinecke | |
Hyper-V has an abstract bus, which gets renumbered on guest startup. So instead of the bus numbers we should be using the device GUIDs, which can be retrieved from the 'device_id' sysfs attribute. | |||
2012-11-23 | Update TODO to include splitting systemd-analyze. | David Strauss | |
The split should be into a lightweight collection tool that can run with minimal dependencies and resources for server and embedded systems. The analysis tool can pull in desktop-style dependencies like Cairo and GTK. | |||
2012-11-22 | update TODO | Lennart Poettering | |
2012-11-22 | update TODO | Lennart Poettering | |
2012-11-22 | timedatectl: replace ",' with ':' | Kay Sievers | |
2012-11-22 | timedatectl: shorten output to print single < 80 char line | Kay Sievers | |
2012-11-22 | shared: FORMAT_TIMESTAMP_MAX +1 | Kay Sievers | |
5 is for weekday+comma+space, but week days in french have 4 digits https://bugs.freedesktop.org/show_bug.cgi?id=57411 | |||
2012-11-22 | readahead: properly detect btrfs on SSD | Lennart Poettering | |
2012-11-22 | locale: modernizations | Lennart Poettering | |
2012-11-22 | dbus: introduce _cleanup_dbus_error_free_ | Lennart Poettering | |
2012-11-22 | manager: introduce watch_init() initializer for watches | Lennart Poettering | |
2012-11-22 | automount: modernizations | Lennart Poettering | |
2012-11-22 | update TODO | Lennart Poettering | |
2012-11-22 | nspawn: reset supplementary and main group id before entering nspawn | Lennart Poettering | |
2012-11-21 | catalog: correct substitution | Lennart Poettering | |
2012-11-21 | update TODO | Lennart Poettering | |
2012-11-21 | cryptsetup: fix nofail support | Tom Gundersen | |
This was documented in the man page and supported in the generator, but systemd-cryptestup itself would fail with this option. systemd-cryptsetup should ignore 'nofail', as it does with 'noauto'. | |||
2012-11-21 | Add #ifdef guards around xattr usage | Henrik Grindal Bakken | |
This adds #ifdef HAVE_ATTR_XATTR_H guards around all usage of xattr. This unbreaks building with --disable-xattr when <attr/xattr.h> doesn't exist. <attr/xattr.h> and usage of fsetxattr() without | |||
2012-11-20 | mount: clarify that User= and Group= are useless with an explicit Type= | David Strauss | |
2012-11-21 | hwdb: fix usage | Tom Gundersen | |
--create is not a valid option. | |||
2012-11-21 | build-sys: add zsh completion bits to EXTRA_DISTsystemd/v196 | Lennart Poettering | |
2012-11-21 | update NEWS | Lennart Poettering | |
2012-11-21 | build-sys: prepare 196 | Lennart Poettering | |
2012-11-21 | update TODO | Lennart Poettering | |
2012-11-21 | journal: by default do not decompress dat objects larger than 64K | Lennart Poettering | |
This introduces a new data threshold setting for sd_journal objects which controls the maximum size of objects to decompress. This is relieves the library from having to decompress full data objects even if a client program is only interested in the initial part of them. This speeds up "systemd-coredumpctl" drastically when invoked without parameters. | |||
2012-11-20 | journal: document new catalog APIs | Lennart Poettering | |
2012-11-20 | journal: add sd_journal_get_catalog_for_message_id() as API to get catalog ↵ | Lennart Poettering | |
entry for any message ID without requiring an open journal file | |||
2012-11-20 | update TODO | Lennart Poettering | |
2012-11-20 | journal-send: always send SYSLOG_IDENTIFIER, if we have it | Lennart Poettering | |
https://bugzilla.redhat.com/show_bug.cgi?id=872193 | |||
2012-11-20 | journal-send: unify a bit of code | Lennart Poettering | |
2012-11-20 | build-sys: add symlink Makefile to catalog/ too | Lennart Poettering | |
2012-11-20 | update TODO | Lennart Poettering | |
2012-11-20 | unit: link up getty configuration from man page and unit files | Lennart Poettering | |
2012-11-20 | catalog: add mission statement | Lennart Poettering | |
2012-11-20 | build-sys: make loadable module support optional | Tom Gundersen | |
kmod is unecessary if loadable module support is disabled in the kernel, so make the dependency optional. | |||
2012-11-20 | build-sys: fix sysvcompat handling in distcheck | Tom Gundersen | |
Distcheck would fail due to sysvinit dir being set, but not sysvrcnd dir: # ./configure --enable-gtk-doc --with-sysvrcd-path=/etc/rc.d # --with-sysvinit-path=/etc/rc.d # make distcheck ... configure: error: *** You need both --with-sysvinit-path=PATH and --with-sysvrcd-path=PATH to enable SysV compatibility support, or both empty to disable it. make: *** [distcheck] Error 1 This also allows sysvcompat support to be disabled from distcheck. |