Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-01-24 | build-sys: add a variable to collect .wants links | Zbigniew Jędrzejewski-Szmek | |
The idea is to make Makefile.am more declarative and avoid repetitions. Redeclaring unit links as variables also makes it easier to conditionally install only some of them. | |||
2013-01-24 | hwdb: update | Kay Sievers | |
2013-01-24 | efi: fix Usec vs. USec | Kay Sievers | |
2013-01-24 | README: remove mentioning of nss-myhostname "package" | Kay Sievers | |
2013-01-24 | loginctl: show seat master and uaccess devices in seat-status output | Lennart Poettering | |
2013-01-24 | update TODO | Lennart Poettering | |
2013-01-24 | logind: add UnlockSessions() clal to complement LockSessions() | Lennart Poettering | |
2013-01-24 | logind: send Resumed() signal after we come back from ↵ | Lennart Poettering | |
suspend/hibernate/hybrid-sleep This allows clients to get asynchronous notifications for user-requested suspend/hibernate cycles. Kernel-triggered automatic suspending is not covered. | |||
2013-01-24 | logind: only allow one shutdown/sleep action to be queued at the same time | Lennart Poettering | |
This should make sure that closing the lid while shutting down won't suspend the machine but will simply cause the shutdown to complete. | |||
2013-01-24 | update TODO | Lennart Poettering | |
2013-01-22 | Replace autoconf int max test with simple define | Zbigniew Jędrzejewski-Szmek | |
2013-01-23 | efi: read microseconds from boot loader info instead of "ticks" magic | Kay Sievers | |
2013-01-23 | configure.ac: combine --Wformat* options into one argument | Kay Sievers | |
https://bugs.freedesktop.org/show_bug.cgi?id=59621 | |||
2013-01-23 | man: clearify the meaning of timeout=0 for password agents | Tom Gundersen | |
The fact that timeout=0 makes password agents wait indefinitely is documented in http://www.freedesktop.org/wiki/Software/systemd/PasswordAgents. Document it also in the relevant man pages. | |||
2013-01-22 | Fix some typos | Eelco Dolstra | |
2013-01-21 | update TODO | Lennart Poettering | |
2013-01-21 | update TODO | Lennart Poettering | |
2013-01-21 | efi: set a nice description string in the ESP units | Lennart Poettering | |
2013-01-21 | efi: properly create symlink dir | Lennart Poettering | |
2013-01-21 | build-sys: add makefile to bootchart | Lennart Poettering | |
2013-01-21 | efi: add efi boot generator that automatically mounts the ESP to /boot | Lennart Poettering | |
2013-01-21 | util: move is_efiboot() to efivars.c | Lennart Poettering | |
2013-01-20 | shutdown: loop - convert to enumerate match | Kay Sievers | |
2013-01-20 | TODO: update loader variables | Kay Sievers | |
2013-01-19 | execute: Fix seccomp support on x32 | Jonathan Callen | |
In the x32 ABI, syscall numbers start at 0x40000000. Mask that bit on x32 for lookups in the syscall_names array and syscall_filter and ensure that syscall.h is parsed correctly. [zj: added SYSCALL_TO_INDEX, INDEX_TO_SYSCALL macros.] | |||
2013-01-19 | udev: net_id - add link to the wiki page | Kay Sievers | |
2013-01-19 | core: if the bootloader supports it, determine firmware and boot loader delay | Lennart Poettering | |
This allows us to print simple performance data of all parts of the boot now: - firmware - boot loader - kernel - initrd - userspace This only works for bootloaders which support passing TSC data via EFI variables. As of now that's only gummiboot. | |||
2013-01-19 | tmpfiles: do not make /run/nologin executable | Michał Bartoszkiewicz | |
2013-01-19 | update TODO | Lennart Poettering | |
2013-01-19 | unit: fix typo | Lennart Poettering | |
2013-01-19 | update TODO | Lennart Poettering | |
2013-01-19 | update TODO | Lennart Poettering | |
2013-01-19 | unit: optionally allow making cgroup attribute changes persistent | Lennart Poettering | |
2013-01-19 | cgroup: additional validity checks for cgroup attribute names | Lennart Poettering | |
2013-01-19 | update TODO | Lennart Poettering | |
2013-01-19 | build-sys: prune the list of directories we create on install | Lennart Poettering | |
2013-01-18 | build-sys: add autoconf macro to pick macro for x32 compatibility | Zbigniew Jędrzejewski-Szmek | |
2013-01-18 | man: update suggested yum command line in nspawn(1) | Lennart Poettering | |
2013-01-18 | nspawn: add audit caps to default set to keep | Lennart Poettering | |
Due to the brokeness of much of the userspace audit code we cannot really start too many systems without the audit caps set. To make nspawn easier to use just add the audit caps by default. To boot up containers successfully the kernel's auditing needs to be turned off still (use "audit=0" on the kernel command line), but at least no manual caps have to be passed anymore. In the long run auditing will be fixed for containers and ve virtualized properly at which time it should be safe to enable these caps anyway. | |||
2013-01-18 | core/cgroup-util: simplify functions and add tests | Zbigniew Jędrzejewski-Szmek | |
2013-01-18 | core/group-util: merge two functions | Zbigniew Jędrzejewski-Szmek | |
2013-01-18 | man: document the _SYSTEMD_USER_UNIT journal field | Mirco Tischler | |
2013-01-18 | systemctl: print the user session journal for user session units. | Mirco Tischler | |
2013-01-18 | logs-show: add show_journal_by_user_unit | Mirco Tischler | |
Print the journal for a user session unit. For now this filters by _SYSTEMD_USER_UNIT and USER_UNIT and additionally _UID. | |||
2013-01-18 | core: log USER_UNIT instead of UNIT if in user session | Mirco Tischler | |
2013-01-18 | journal: log _SYSTEMD_USER_UNIT for user session units | Mirco Tischler | |
2013-01-18 | util: modernization and test for load_env_file | Zbigniew Jędrzejewski-Szmek | |
2013-01-18 | util: continuation support for load_env_file | Michal Vyskocil | |
Variable definitions can be written on more than one line - if each ends with a backslash, then is concatenated with a previous one. Only backslash and unix end of line (\n) are treated as a continuation. Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=58083 [zj: squashed two patches together; cleaned up grammar; removed comment about ignoring trailing backslash -- it is not ignored.] Document continuation support in systemd.exec | |||
2013-01-18 | journal-gatewayd,man: document new HTTPS options | Zbigniew Jędrzejewski-Szmek | |
2013-01-18 | journal-gatewayd: return nice error on unsupported methods | Zbigniew Jędrzejewski-Szmek | |
Returns "HTTP/1.0 406 Not Acceptable" instead of silently closing the connection. |