Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-06-04 | build-sys: release 185systemd/v185 | Kay Sievers | |
2012-06-04 | systemctl: rename "man" to "help" | Kay Sievers | |
2012-06-04 | udev: reset /proc/self/oom_score_adj in worker processes | Kay Sievers | |
Only the main daemon process should be excluded from OOM handling, not the worker processes or their child processes. | |||
2012-06-04 | remove support for deprecated /proc/self/oom_adj | Kay Sievers | |
2012-06-04 | udev: limit minimum worker count to 16 | Kay Sievers | |
2012-06-04 | update TODO | Kay Sievers | |
2012-06-04 | udev: lower the starting children_max -> drop the minimum required RAM from ↵ | Lauri Kasanen | |
23mb to 5mb Udev was the limiting factor for us on low-RAM systems. Given an average RSS of 180kb, 128 workers would require ~23mb of RAM. Now, please consider what happens when there is only, say, 15mb free. Udev protects itself from OOM, and the kernel can do nothing but panic. 28 workers * 0.18mb = ~5mb. This change should not affect more powerful systems much, given that they still get the addition from the amount of RAM. | |||
2012-06-04 | fstab-generator: avoid mangling of mount source string | Kay Sievers | |
This is a valid source entry in /etc/fstab: //192.168.6.10/data /data cifs noperm,auto On Mon, Jun 4, 2012 at 2:04 PM, Dave Reisner <d@falconindy.com> wrote: > On Mon, Jun 04, 2012 at 12:57:47PM +0200, Kay Sievers wrote: >> >> Changed it to use: >> path_is_absolute() >> instead of: >> is_path(), >> so that we still sanitize the input we might match against. >> >> Let me know, if you think that could still cause any problems? > Yes, this will still break CIFS shares. | |||
2012-06-04 | unit-name: never create a unit name with a leading '.' | Kay Sievers | |
Supposed to prevent creating unit files like: ├── dev-sda1.device.wants │ └── .dot.mount -> /run/systemd/generator/.dot.mount ├── .dot.mount from: # cat /etc/fstab /dev/sda1 /.dot vfat ro 1 3 which we later skip reading because of the leading '.'. | |||
2012-06-04 | logind: punt duplicate definition of InhibitWhat | Malte Starostik | |
Trivial fix for: src/login/logind-inhibit.h:37:3: error: redefinition of typedef 'InhibitWhat' src/login/logind-inhibit.h:26:26: note: previous declaration of 'InhibitWhat' was here | |||
2012-06-04 | fstab-generator: avoid mangling of non-path mount source and dest | Kay Sievers | |
This can invalidate otherwise valid source paths with trailing slashes, such as "host:/" in the case of a network mount. Based on a patch from Dave Reisner <dreisner@archlinux.org>, which removed the slash mangling entirely. Changed it to match on the leading slash to exclude non-path values. | |||
2012-06-04 | keymaps: keyboard-force-release - fix shebang | Dave Reisner | |
This script will still run without the shebang, but we won't get the intended effect of the errexit flag in the interpreter line. | |||
2012-06-04 | systemd-detect-virt: fix "option '--quiet' requires an argument" | Kay Sievers | |
https://bugs.freedesktop.org/show_bug.cgi?id=50671 | |||
2012-06-02 | keymaps: replace dir tokens in keyboard-force-release | Dave Reisner | |
Use the correct udev libexec dir as well, not systemd's. | |||
2012-06-01 | missing: define MS_STRICTATIME if not defined already | Lennart Poettering | |
2012-06-01 | fix typo | Kay Sievers | |
2012-06-01 | units: fix man section | Lennart Poettering | |
2012-06-01 | journal: allow setting of a cutoff log level for disk storage, syslog, kmsg, ↵ | Lennart Poettering | |
console forwarding | |||
2012-06-01 | journal: support changing the console tty to forward to | Lennart Poettering | |
2012-06-01 | man: document systemd-journal | Lennart Poettering | |
2012-06-01 | man: write man page for systemd-logind | Lennart Poettering | |
2012-06-01 | logind: fix indentation | Lennart Poettering | |
2012-06-01 | logind: interpret the can_sleep return value properly | Matthias Clasen | |
can_sleep() returns a boolean, so a return value > 0 does not mean 'na'. | |||
2012-06-01 | sleep: Don't call execute_directory() on a binary | Matthias Clasen | |
Probably a copy-paste error, SYSTEMD_SLEEP_BINARY_PATH should have been SYSTEMD_SLEEP_PATH. | |||
2012-05-31 | update TODO | Kay Sievers | |
2012-05-31 | build-sys: split-off D-Bus requires from selinux convenience lib | Kay Sievers | |
2012-05-31 | logind: add new user state 'closing' | Lennart Poettering | |
2012-05-31 | logind: properly clean up user cgroups when they run empty | Lennart Poettering | |
2012-05-31 | main: Silence gcc warning | Marc-Antoine Perennou | |
2012-05-31 | man: add documentation for the binfmt, modules-load, sysctl services | Lennart Poettering | |
2012-05-31 | units: add Documentation= field to console-getty.service | Lennart Poettering | |
2012-05-31 | Revert "label: fix systemd-udev labeling of /run directory." | Kay Sievers | |
This reverts commit 9b5af248f04b6cad8a5bca836e89a39e9f6823d9. Udev now explicitely labels only files/directories in /dev. The selinux array API is not released and will not work on other distros at this moment. | |||
2012-05-31 | udev: do not selinux label files in /run/udev | Kay Sievers | |
2012-05-31 | mkdir: provide all functions with and without selinux label application | Kay Sievers | |
2012-05-31 | mkdir: append _label to all mkdir() calls that explicitly set the selinux ↵ | Kay Sievers | |
context | |||
2012-05-31 | util: don't require libcap when building libsystemd-shared | Kay Sievers | |
src/shared/util.c includes <sys/capability.h> but doesn't use anything defined there. Since <sys/capability.h> is part of libcap, not libc, don't require it. Allows systemd-without-udevd to require fewer external libraries. | |||
2012-05-31 | main: allow setting of timer slack for PID 1 | Lennart Poettering | |
2012-05-31 | util: introduce a proper nsec_t and make use of it where appropriate | Lennart Poettering | |
2012-05-31 | systemctl: introduce "systemctl man" to show man page for unit | Lennart Poettering | |
For now this only reads man: URLs, but later on we might want to support info: too. http/https is probably out of focus. | |||
2012-05-31 | build-sys: prepare release 184systemd/v184 | Lennart Poettering | |
2012-05-31 | label: fix systemd-udev labeling of /run directory. | Daniel J Walsh | |
systemd-udev is currently incorrectly labeling /run/udev/* content because it is using selinux prefix labeling of /dev. This patch will allow systemd-udev to use prefix labeling of /dev and /run. | |||
2012-05-31 | journald: properly handle if we have no PID in a kmsg line | Lennart Poettering | |
2012-05-31 | login: properly detect MIMO USB displays | Lennart Poettering | |
MIMO USB displays use a generic VID/PID for the hub component. With a bit of trickery we can detect them by the VID/PID of the graphics component. | |||
2012-05-31 | udev: skip timestamp check if rules are already free()d during reload | Kay Sievers | |
2012-05-31 | selinux: downgrade database load time message to LOG_DEBUG | Lennart Poettering | |
2012-05-30 | update TODO | Lennart Poettering | |
2012-05-30 | shutdown: Don't skip bind mounts on shutdown | Daniel Drake | |
This reverts commits d72238fcb34abc81aca97c5fb15888708ee937d3 and f3accc08. OLPC runs / as a bind-mount, so this must be remounted RO during shutdown to avoid corruption. As Lennert can't recall the exact reasons for making the shutdown code skip bind mounts, revert to previous behaviour to solve the issue for OLPC. http://lists.freedesktop.org/archives/systemd-devel/2012-April/004957.html | |||
2012-05-30 | journal: don't allow adding invalid matches to the context | Lennart Poettering | |
2012-05-30 | journalctl: check first if match is a path name | Lennart Poettering | |
2012-05-30 | journalctl: support /usr/bin/nginx, etc | Shawn Landden | |