Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-05-27 | udev.pc: install udev files to /lib/udev rather than /lib/systemd | Tom Gundersen | |
2012-05-27 | journald: refer to the correct man page | Matthias Clasen | |
Fix the reference to the journald.conf man page in the config file of the same name. | |||
2012-05-27 | rules: Limit USB autosuspend on USB HID devices | Matthew Garrett | |
Some USB ports on external hubs may be reported as "fixed". We only want to auto-enable this on ports that are internal to the machine, so check the parent state as well. | |||
2012-05-27 | scsi_id: fix truncated model in by-id device links | Jean Delvare | |
Do not forget the leading "S" when appending the serial number, otherwise we chop the last character of the model name. Addresses: https://bugzilla.novell.com/show_bug.cgi?id=763397 Signed-off-by: Jean Delvare <jdelvare@suse.de> Signed-off-by: Petr Uzel <petr.uzel@suse.cz> | |||
2012-05-25 | udev: silent gcc warnings | Kay Sievers | |
2012-05-24 | NEWS: add contributors list | Lennart Poettering | |
2012-05-24 | swap: avoid bad memory accesssystemd/v183 | Lennart Poettering | |
2012-05-24 | NEWS: fix even more typos | Lennart Poettering | |
2012-05-24 | update TODO | Lennart Poettering | |
2012-05-24 | NEWS: fix more typos | Lennart Poettering | |
2012-05-24 | NEWS: fix more typos | Lennart Poettering | |
2012-05-24 | NEWS: fixo | Lennart Poettering | |
2012-05-24 | NEWS: explain the version jump | Lennart Poettering | |
2012-05-24 | update TODO | Lennart Poettering | |
2012-05-24 | test/TEST-01-BASIC: add missing "; then" | Harald Hoyer | |
2012-05-24 | test/TEST-01-BASIC: only test systemd-nspawn, if the test system uses systemd | Harald Hoyer | |
2012-05-24 | test/TEST-01-BASIC: add systemd-nspawn run with the root image | Harald Hoyer | |
2012-05-24 | build-sys: prepare release 183 | Lennart Poettering | |
2012-05-24 | test/TEST-01-BASIC: untabified | Harald Hoyer | |
2012-05-24 | test/TEST-01-BASIC: add a defined rc.local | Harald Hoyer | |
2012-05-24 | test/TEST-01-BASIC: add /etc/localtime to test image | Harald Hoyer | |
2012-05-24 | test: add touch to test machine | Lennart Poettering | |
2012-05-24 | test: check systemctl --failed in test VM | Lennart Poettering | |
2012-05-24 | main: add configuration option to alter capability bounding set for PID 1 | Lennart Poettering | |
This also ensures that caps dropped from the bounding set are also dropped from the inheritable set, to be extra-secure. Usually that should change very little though as the inheritable set is empty for all our uses anyway. | |||
2012-05-24 | service: for Type=idle units consider START_PRE, START, START_POST all as ACTIVE | Lennart Poettering | |
We want to avoid a deadlock when a service has ExecStartPre= programs that wait for the job queue to run empty because of Type=idle, but which themselves keep the queue non-empty because START_PRE was considered ACTIVATING and hence the job not complete. With this patch we alter the state translation table so that it is impossible ever to wait for Type=idle unit, hence removing the deadlock. | |||
2012-05-23 | update TODO | Lennart Poettering | |
2012-05-23 | units: fix file syntax | Lennart Poettering | |
2012-05-23 | journal: don't complain if SELinux userspace is available but the kernel ↵ | Lennart Poettering | |
lacks it | |||
2012-05-23 | man: properly document FsckPassNo= for mount units | Lennart Poettering | |
2012-05-23 | readahead: use Conflicts= instead of masking to get rid of readahead units | Lennart Poettering | |
2012-05-23 | update TODO | Lennart Poettering | |
2012-05-23 | readahead: disable collect/replay during system updates | Lennart Poettering | |
2012-05-23 | readahead: avoid running of readahead services if readahead is already done | Lennart Poettering | |
2012-05-23 | readahead: avoid activating the journal by accident, log directly to kmsg | Lennart Poettering | |
2012-05-23 | readahead: when doing a system update drop readahead file | Lennart Poettering | |
2012-05-23 | manager: rework generator logic | Lennart Poettering | |
Previously generated units were always placed at the end of the search path. With this change there will be three unit dirs instead of one, to place generated entries at the beginning, in the middle and at the end of the search path: beginning: for units that need to override all configuration, regardless of user or vendor. Example use: system-update-generator uses this to temporarily redirect default.target. middle: for units that need to override vendor configuration, but not vendor configuration. Example use: /etc/fstab should override vendor supplied configuration (think /tmp), but should not override native user configuration. end: does not override anything but is available as well. Possible usage might be to convert D-Bus bus service files to native units but allowing vendor supplied native units to win. | |||
2012-05-22 | update TODO | Lennart Poettering | |
2012-05-22 | units: remove service sysv_path variable and replace it by generic unit_path | Lennart Poettering | |
UnitPath= is also writable via native units and may be used by generators to clarify from which file a unit is generated. This patch also hooks up the cryptsetup and fstab generators to set UnitPath= accordingly. | |||
2012-05-22 | log: make sure generators never log into the journal to avoid activation ↵ | Lennart Poettering | |
deadlocks This makes all generators log to kmsg by default. | |||
2012-05-22 | mount: drop unused function | Lennart Poettering | |
2012-05-22 | system-update: add system update generator | Lennart Poettering | |
http://freedesktop.org/wiki/Software/systemd/SystemUpdates | |||
2012-05-22 | journal: log journal internal messages to kmsg | Lennart Poettering | |
2012-05-22 | execute: use a much lower idle timeout that default time | Lennart Poettering | |
The idle timeout after all is for cosmetics only, hence avoid any substantial delays just for it. | |||
2012-05-22 | mount: replace PID1 internal fstab parser with generator | Lennart Poettering | |
Bit by bit we should remove non-unit parsing from PID 1 and move into generators, to clean up our code base a bit and clearly separate parsers. | |||
2012-05-22 | main: only fall back to /bin/sh in case /sbin/init does not exist | Kay Sievers | |
2012-05-22 | test: introduce a basic testsuite framework | Harald Hoyer | |
$ cd test $ sudo make check will run all tests in the TEST-* subdirectories $ cd test/TEST-01-BASIC $ sudo make clean setup run will run the different stages of the test for debugging purposes | |||
2012-05-22 | logind: fix write out of user state file | Lennart Poettering | |
2012-05-22 | switch-root: do not use close old_root_fd after rm_rf_children() | Harald Hoyer | |
rm_rf_children() has already closed the fd with closedir(). | |||
2012-05-22 | util: make sure to fstatat() at most once in rm_rf_children() | Lennart Poettering | |
2012-05-22 | rescue: don't pull in sockets | Lennart Poettering | |
In rescue mode let's not establish all sockets, so that we don't end up starting a lot of additional services automatically. Instead of pulling in basic.target we now only pull in sysinit.target which pulls in local-fs.target and swap.target. That way rescue mode has all the really basic setup around, but normal services are not started and not autostarted either. |