Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-09-28 | tempfiles: add little utility for creating volatile files/dirs in tmpfs ↵ | Lennart Poettering | |
hierarchies | |||
2010-09-28 | mount: properly handle bind mounts | Lennart Poettering | |
2010-09-28 | service: shortcut sysv provides on ourselves | Lennart Poettering | |
2010-09-28 | service: ignore sysv $null service | Lennart Poettering | |
2010-09-27 | fix spelling of 'unneeded' at various places | Lennart Poettering | |
2010-09-27 | service: don't create sysv order deps on merged units | Lennart Poettering | |
2010-09-27 | load-fragment: reset fragment_path if we couldn't find a unit file for it | Lennart Poettering | |
2010-09-27 | readahead: avoid collisions with the NULL pointer | Lennart Poettering | |
2010-09-27 | Revert "hashmap: HASHMAP_FOREACH* iterate until ITERATOR_LAST" | Lennart Poettering | |
This reverts commit 66d9b3b59551a33398b2201662af5c8c17a367c9. If we check for i == ITERATOR_LAST we exit the loop one entry before the end. Instead we should return if e is NULL. | |||
2010-09-27 | Need to use #elif defined(DEBIAN) here... | Michael Biebl | |
This fixes a c&p error in 7472744bf9eddc7137f03233e49fa780793d5fc0 | |||
2010-09-27 | debian: add locale compat support | Michael Biebl | |
Read LANG from /etc/default/locale. | |||
2010-09-27 | readahead: properly initialize variable | Lennart Poettering | |
2010-09-27 | sysv: optionally disable of SysV init/rcN.d support at compile time | Fabiano Fidencio | |
This patch adds a cpp definition HAVE_SYSV_COMPAT that is used to isolate code dealing with /etc/init.d and /etc/rcN.d for systems where it does not make sense (one that does not use sysv or one that is fully systemd native). The patch tries to be as little intrusive as possible, however in order to minimize the number of #ifdef'ed regions I've reordered some code in path-lookup.c:lookup_paths_init() where all code dealing with sysv is now isolated under running_as == MANAGER_SYSTEM as well. Moreover, In struct Service, some fields were rearranged to reduce the number of ifdefs. Lennart's suggestions were fixed and squashed with the original patch, that was sent by Gustavo Sverzut Barbieri (barbieri@profusion.mobi). | |||
2010-09-27 | hashmap: HASHMAP_FOREACH* iterate until ITERATOR_LAST | Harald Hoyer | |
2010-09-27 | job: show failure message only for start jobs | Lennart Poettering | |
2010-09-27 | mount: Remove double include of "mount.h" | Fabiano Fidencio | |
2010-09-27 | update fixme | Lennart Poettering | |
2010-09-26 | readahead-replay: use posix_fadvise instead of readahead | Harald Hoyer | |
2010-09-26 | readahead-collect: check for negative return codes of fs_on_ssd() | Harald Hoyer | |
2010-09-26 | readahead: add interface to sd-daemon.[ch] to control readahead | Lennart Poettering | |
2010-09-26 | readahead-collect: typo, free the correct pointer | Harald Hoyer | |
2010-09-25 | readahead: parse command line arguments | Lennart Poettering | |
2010-09-25 | readahead: never readahead temporary files since their names tend not to be ↵ | Lennart Poettering | |
stable | |||
2010-09-25 | readahead: make candidate for early OOM kill | Lennart Poettering | |
2010-09-25 | readahead: exit after a maximum runtime | Lennart Poettering | |
2010-09-25 | readahead-replay: delay ready notification until we queued first read | Lennart Poettering | |
2010-09-25 | readahead: disable on low memory machines | Lennart Poettering | |
2010-09-24 | readahead: take file system root on command line | Lennart Poettering | |
2010-09-23 | readahead: normalize logging | Lennart Poettering | |
2010-09-23 | readahead: put limit on files we read ahead | Lennart Poettering | |
2010-09-23 | readahead: add btrfs defrag support | Lennart Poettering | |
2010-09-23 | fanotify: use uint64_t instead of __u64 | Lennart Poettering | |
2010-09-23 | dbus: export number of total failed jobs on D-Bus interface | Lennart Poettering | |
2010-09-23 | readahead: implement minimal readahead logic based on fanotify(), mincore() ↵ | Lennart Poettering | |
and readahead() | |||
2010-09-21 | dbus: add Progress property to introspection | Gustavo Sverzut Barbieri | |
2010-09-21 | suse: locale + vconsole compat support | Kay Sievers | |
2010-09-21 | manager: calculate progress value while booting | Lennart Poettering | |
2010-09-21 | manager: measure startup times | Lennart Poettering | |
2010-09-21 | manager: count how many jobs we executed | Lennart Poettering | |
2010-09-21 | vconsole: make sure we don't merge configuration settings from different sources | Lennart Poettering | |
2010-09-21 | locale: make sure we don't merge configuration settings from different sources | Lennart Poettering | |
2010-09-21 | locale: unset locale vars that are not set any longer | Lennart Poettering | |
2010-09-21 | locale: never use LC_ALL. It's evil. | Lennart Poettering | |
2010-09-21 | service: start Arch daemons | Tom Gundersen | |
Arch does not use proper SysV runlevels. Instead /etc/rc.conf contains an array of daemons to load in a multi-user runlevel, and some dependencies between them. This patch enables this behaviour in SystemD (only when compiled with Arch support), which allows SystemD to be a drop in replacement on Arch (modulo some minor bugs). v2: simplified after suggestion from Lennart | |||
2010-09-21 | socket: Support IPv6-less systems with runtime check. | Fabiano Fidencio | |
This patch introduces socket_ipv6_is_supported() call that checks for IPv6 availability. Code then check for it before using specific calls. In order to be less intrusive, this patch avoids IPv6 entries being parsed at all, this way we don't get such entries in the system and all other code paths are automatically ignored. However an extra check is done at socket_address_listen() to make sure of that. As the number of Netlink messages is not know upfront anymore, loopback-setup.c was refactored to dynamically calculate the sequence number and count. Lennart's suggestions were fixed and squashed with the original patch, that was sent by Gustavo Sverzut Barbieri (barbieri@profusion.mobi). | |||
2010-09-21 | gentoo: locale-setup support | Gustavo Sverzut Barbieri | |
Use locale variables from /etc/profile.env as Gentoo's openrc runscript does (tool that is used by /etc/init.d/* services). | |||
2010-09-21 | gentoo: vconsole-setup support. | Gustavo Sverzut Barbieri | |
This patch is a bit bigger than expected since Gentoo being non-standard in some places. 1. it is installing binaries at /usr/bin instead of /bin. 2. it is using CamelCase names for consolefonts. 3. /etc/rc.conf:unicode=(yes|no) just forbids loadkeys and setfont "-u" options, but do not disable the actual kernel default_utf8 from vt module. | |||
2010-09-21 | ask-password. Initializing socket_fd inside ask_agent. | Luis Felipe Strano Moraes | |
Garbage value could have been used if there was an error creating the password file. | |||
2010-09-21 | systemctl: make condrestart equivalent to try-restart | Michal Schmidt | |
"condrestart" should be equivalent to "try-restart", i.e. it should be translated into "TryRestartUnit". See http://fedoraproject.org/wiki/Packaging:SysVInitScript#condrestart_and_try-restart Fixes https://bugzilla.redhat.com/show_bug.cgi?id=635780 | |||
2010-09-20 | locale: set LANG on Arch | Tom Gundersen | |
This variable is defined in /etc/rc.conf |