Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-04-19 | docs: do not generate tmpl files | Javier Jardón | |
Its not needed as all the documentation is inline source code, not in separate *.tmpl files | |||
2012-04-19 | fix typo in src/shared/install.c | Sven Anders | |
2012-04-18 | update TODO | Kay Sievers | |
2012-04-18 | udev: units - reference systemd-* units | Kay Sievers | |
2012-04-18 | build-sys: move dev-setup to label.la | Kay Sievers | |
2012-04-18 | remove MS_* which can not be combined with current kernel code | Kay Sievers | |
MS_BIND|MS_MOVE can not be combined: do_mount() else if (flags & MS_BIND) do_loopback(&path, dev_name, flags & MS_REC); [...] else if (flags & MS_MOVE) do_move_mount(&path, dev_name); MS_REMOUNT|MS_UNBINDABLE can not be combined: do_mount() if (flags & MS_REMOUNT) do_remount(&path, flags & ~MS_REMOUNT, mnt_flags, data_page); [...] else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE)) do_change_type(&path, flags); | |||
2012-04-17 | udev: unify /dev static symlink setup | Kay Sievers | |
2012-04-17 | udev: docs - updated index page to match common gtk style | Kay Sievers | |
2012-04-17 | update TODO | Kay Sievers | |
2012-04-17 | silence a bunch of gcc warnings | Kay Sievers | |
2012-04-17 | build-sys: silence gtk-doc check, remove gtk-doc options from configure and ↵ | Kay Sievers | |
distcheck | |||
2012-04-17 | build-sys: make gtk-doc dependency optional | Javier Jardón | |
2012-04-17 | update TODO | Kay Sievers | |
2012-04-17 | selinux: unify systemd and udev code | Kay Sievers | |
2012-04-17 | mkdir: do not use alloca() in a loop | Kay Sievers | |
2012-04-17 | update .gitignore | Lennart Poettering | |
2012-04-17 | configure.ac: Use a auxiliar directory to store autogenerated files | Javier Jardón | |
2012-04-17 | configure.ac: Use the new autoconf field to set the project webpage | Javier Jardón | |
2012-04-17 | update TODO | Lennart Poettering | |
2012-04-17 | man: Fix a few typos | Michael Biebl | |
Reported-by: A. Costa <agcosta@gis.net> Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=668344 | |||
2012-04-17 | Fix typo | Tollef Fog Heen | |
2012-04-17 | update TODO | Kay Sievers | |
2012-04-17 | udev: kill udev_selinux_setfscreateconat() | Kay Sievers | |
2012-04-17 | udev: replace util_create_path() with mkdir_parents() | Kay Sievers | |
2012-04-17 | udev: install udevd as /usr/lib/systemd/systemd-udevd | Kay Sievers | |
2012-04-16 | udev: use startswith() and streq() | Kay Sievers | |
2012-04-16 | udev: remove configuration options for /dev, /sys, /run directories | Kay Sievers | |
2012-04-16 | udev: replace ARRAY_SIZE() with ELEMENTSOF() | Kay Sievers | |
2012-04-16 | logind: remove redundant entries from logind's default controller lists too | Lennart Poettering | |
2012-04-16 | systemctl: show main and control PID explicitly in cgroup-show | Lennart Poettering | |
In some cases the main/control PID of a service can be outside of the services cgroups (for example, if logind readjusts the processes' cgroup). In order to clarify this for the user show the main/control PID in the cgroup tree nonetheless, but mark them specially. | |||
2012-04-16 | util: introduce memdup() | Lennart Poettering | |
2012-04-16 | cgls: don't show empty cgroups by default | Lennart Poettering | |
2012-04-16 | logind: hook up inhibit logic with idle hint logic | Lennart Poettering | |
2012-04-16 | logind: add shutdown/suspend/idle inhibition framework | Lennart Poettering | |
2012-04-16 | manager: remove unavailable/redundant entries from default controllers list | Lennart Poettering | |
2012-04-16 | cgroup: if a controller is not available don't try to create cgroups in its ↵ | Lennart Poettering | |
hierarchy | |||
2012-04-15 | udev: udev_monitor_new_from_socket() - log error and remove from public header | Kay Sievers | |
2012-04-15 | udev: update some rules | Kay Sievers | |
2012-04-15 | udev: doc - sync libudev and gudev | Kay Sievers | |
2012-04-15 | udev: cleanup the udev cgroup when the daemon enters the idle state | Kay Sievers | |
2012-04-14 | udev: clarify man page regarding starting dameons | Kay Sievers | |
2012-04-14 | gudev: gtk-doc - hide licence stuff which consumes three-fourths of the ↵ | Kay Sievers | |
index page | |||
2012-04-14 | udev: trivial gtk-doc update | Kay Sievers | |
2012-04-14 | udev: move all unconditionally installed rules to rules/ | Kay Sievers | |
2012-04-14 | udev: keymap - move src/udev/force-release-maps/ to keymaps-force-release/ | Kay Sievers | |
2012-04-14 | udev: test - move test/ and src/test/ | Kay Sievers | |
2012-04-14 | README: update udev requirements | Kay Sievers | |
2012-04-14 | build-sys: silence the xsltproc output | Kay Sievers | |
2012-04-13 | build-sys: add 'make doc-sync' target | Kay Sievers | |
2012-04-13 | service: place control command in subcgroup control/ | Lennart Poettering | |
Previously, we were brutally and onconditionally killing all processes in a service's cgroup before starting the service anew, in order to ensure that StartPre lines cannot be misused to spawn long-running processes. On logind-less systems this has the effect that restarting sshd necessarily calls all active ssh sessions, which is usually not desirable. With this patch control processes for a service are placed in a sub-cgroup called "control/". When starting a service anew we simply kill this cgroup, but not the main cgroup, in order to avoid killing any long-running non-control processes from previous runs. https://bugzilla.redhat.com/show_bug.cgi?id=805942 |