Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-08-10 | shared/utf8: mark char* as const | Dave Reisner | |
Avoids compiler warning: src/shared/utf8.c: In function 'ascii_filter': src/shared/utf8.c:278:16: warning: assignment discards 'const' qualifier from pointer target type [enabled by default] | |||
2012-08-10 | shutdown: recursively mark root as private before pivot | Dave Reisner | |
Because root is now recursively marked as shared on bootup, we need to recursively mark root as private. This prevents a pivot_root failure on shutdown: Cannot finalize remaining file systems and devices, giving up. pivot failed: Invalid argument | |||
2012-08-10 | id128: don't use C99 bool in public headers | Lennart Poettering | |
2012-08-09 | journald: never read the same kernel msg twice, and generate message when we ↵ | Lennart Poettering | |
lose one | |||
2012-08-09 | journalctl: support device node matches as shortcut | Lennart Poettering | |
2012-08-09 | journald: properly unescape messages from /dev/kmsg | Lennart Poettering | |
2012-08-09 | journald: also parse kernel key/value fields and store them prefixed with ↵ | Lennart Poettering | |
_KERNEL_ as journal fields | |||
2012-08-09 | journald: basic support for /dev/kmsg parsing | Lennart Poettering | |
2012-08-08 | fix a couple of issues found with llvm-analyze | Lennart Poettering | |
2012-08-08 | build-sys: prepare release 188systemd/v188 | Lennart Poettering | |
2012-08-08 | Merge remote-tracking branch 'simonpe/cleanup' | Lennart Poettering | |
2012-08-08 | udev: fix typo in copyright | Kay Sievers | |
2012-08-08 | systemd: introduced new timeout types | Michal Sekletar | |
Makes possible to specify separate timeout for start and stop of the service. [ Improved the manpage. Coding style fix. -- michich ] | |||
2012-08-08 | logind: use bus_method_call_with_reply() where posible | Simon Peeters | |
2012-08-08 | update-utmp: use bus_method_call_with_reply() where posible | Simon Peeters | |
2012-08-08 | udev: re-initialize builtins in the daemon process, not in the worker | Kay Sievers | |
2012-08-08 | udev: initialize rules dir timestamps when reading rules | Kay Sievers | |
On Wed, Aug 8, 2012 at 11:48 AM, Michael Schroeder <mls@suse.de> wrote: > if rules are installed in the first 3 seconds after the udev start, > the stamps will all be zero, so the [first] call to check_rules_timestamp() > will just copy the current mtime [and not cause a rules re-load]. | |||
2012-08-08 | loginctl: use bus_method_call_with_reply() where posible | Simon Peeters | |
2012-08-08 | move bus_method_call_with_reply() to dbus-common | Simon Peeters | |
2012-08-08 | systemctl: use bus_method_call_with_reply() where posible | Simon Peeters | |
use the method introduced by the previous commit | |||
2012-08-08 | systemctl: add bus_method_call_with_reply | Simon Peeters | |
this method combines the folowing dbus calls and there error handling: dbus_message_new_method_call() dbus_message_append_args() dbus_connection_send_with_reply_and_block() | |||
2012-08-07 | journalctl: include corrupted files in output | Lennart Poettering | |
If a journal file was rotated away because it was corrupted or dirty we should still show its contents via "journalctl". | |||
2012-08-06 | mount-setup: change system mount propagation to shared by default | Lennart Poettering | |
In order to make containers work nicely out of the box it is highly desirable to have the mount propagation mode for the root fs is set as "shared" by default so that containers receive system mounts by default. (See mount --make-shared for more information). As it is unlikely that the kernel will change the default to "shared" for this, do this early at boot-up from PID 1. Setups which prefer the default of "private" should undo this change via invoking "mount --make-private /" or a similar command after boot. In the long run /etc/fstab should take the propagation mode as a mount option like any other, so that this may be used to change the default mode. However, if fstab is not around or doesn't list / we still should default to shared as propagation mode, hence this change now. | |||
2012-08-06 | sysctl: apply configuration at once | Michal Sekletar | |
https://bugzilla.redhat.com/show_bug.cgi?id=767795 [ Simplified by iterating the config files in the backwards order - no need for hashmap_update(). Other minor cleanups. -- michich ] | |||
2012-08-06 | main: fix typo | Lennart Poettering | |
2012-08-06 | continue work with error messages, log_oom() | Shawn Landden | |
Adds messages for formally silent errors: new "Failed on cmdline argument %s: %s". Removes some specific error messages for -ENOMEM in mount-setup.c. A few specific ones have been left in other binaries. | |||
2012-08-06 | shutdown: allow to specify broadcast message when cancelling shutdown | Michal Sekletar | |
makes shutdown behaviour more compatible | |||
2012-08-03 | cryptsetup: add keyfile-size= support | Tom Gundersen | |
This is useful e.g. if the keyfile is a raw device, where only parts of it should be read. It is typically used whenever the keyfile-offset= option is specified. Tested-by: Erik Westrup <erik.westrup@gmail.com> | |||
2012-08-03 | logs-show: fix off-by-one error | Shawn Landen | |
Ellipsize lines that are one character too long. | |||
2012-08-03 | test: allow deletion of temporary files from normal fs | Zbigniew Jędrzejewski-Szmek | |
Not everybody has /tmp on tmpfs, and this was breaking 'make check'. | |||
2012-08-03 | keyboard-force-release: Fix previous commit | Martin Pitt | |
Was missing a * for the globbing. | |||
2012-08-03 | keyboard-force-release: Apply to all Fujitso AMILO models | Martin Pitt | |
https://launchpad.net/bugs/1011323 reports more AMILO models which need this quirk; enough to assume that all of them need it, and applying it on working models does not really hurt. | |||
2012-08-03 | udev: path_id - add comment about the unrteliable rebase logic | Kay Sievers | |
2012-08-01 | journal: add sd_journal_perror() to API | Lennart Poettering | |
2012-07-31 | journald: fixed memory leak | Artur Zaprzala | |
2012-07-31 | libudev-queue.c: simplified open_queue_file | Arvydas Sidorenko | |
There is no apparent justification for using util_strscpyl on the filename since it's a plain hardcoded path. Older versions used: util_strscpyl(filename, sizeof(filename), SOME_DIR, "/queue.bin", NULL); and when changed nobody bothered to simplify it. | |||
2012-07-31 | automount: print mount point in debug message | Zbigniew Jędrzejewski-Szmek | |
Old: systemd[1]: Got direct mount request for ffff88003bb10c00, triggered by 14476 (fuser) New: systemd[1]: Got direct mount request on /dev/mqueue, triggered by 2177 (ls) | |||
2012-07-30 | udev: set log.c's log level from udev's kernel command line option | Kay Sievers | |
2012-07-30 | udev: add missing newline when writing to /dev/kmsg | Kay Sievers | |
2012-07-29 | logind: add new loginctl lock-sessions command | Lennart Poettering | |
2012-07-29 | logind: add LockSessions() call to lock all local sessions at once | Lennart Poettering | |
2012-07-28 | selinux: avoid inclusion of null_log without selinux | Dave Reisner | |
Avoids a compile time warning: warning: 'null_log' defined but not used [-Wunused-function] | |||
2012-07-28 | systemctl: append .service to unit names lacking suffix | Lennart Poettering | |
https://bugs.freedesktop.org/show_bug.cgi?id=39386 | |||
2012-07-27 | journalctl: add --priority= switch for filtering by priority | Lennart Poettering | |
2012-07-26 | cgtop: add --version option | Zbigniew Jędrzejewski-Szmek | |
2012-07-26 | cgtop: use full terminal width | Zbigniew Jędrzejewski-Szmek | |
2012-07-26 | Add a 'b' option to cgtop, equivalent to the same option in top | David Strauss | |
[zj: use static] | |||
2012-07-26 | Add an 'n' option to cgtop (equivalent to top) | David Strauss | |
2012-07-26 | journald: log driver messages at LOG_INFO | Lennart Poettering | |
2012-07-26 | journalctl: hightlight log lines by priority | Lennart Poettering | |
warn/notice = bright white < error = red |