summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* modules-load: filter out double modulesLennart Poettering2011-09-211-0/+1
|
* service: minor change in service_load_pid_file return valueMichal Schmidt2011-09-211-2/+2
| | | | | | | | Return 0 only if the PID was really loaded. If no PIDFile= is defined, return -ENOENT. Only one caller cares about the return value of this function and this change makes the usage nicer.
* condition: add ConditionPathIsSymbolicLinkMichal Schmidt2011-09-216-3/+23
|
* condition: always follow symlinks for condition checks, to mimic testLennart Poettering2011-09-212-7/+7
|
* service: handle forking services that move to a new PIDMichal Schmidt2011-09-211-3/+15
| | | | | | | When some forking daemons receive a SIGHUP, they re-execute themselves and consequently change to a new main PID. As long as they update the PID file in the right order (before exiting the old PID), we can detect that and avoid killing them.
* units: don't initialize automount point for securityfs if the initrd already ↵Lennart Poettering2011-09-211-0/+1
| | | | mounted the directory
* unit: introduce ConditionPathIsMountPoint=Lennart Poettering2011-09-216-19/+45
|
* man: document which condition tests follow symlinksMichal Schmidt2011-09-201-17/+16
| | | | | | ConditionPathExists and ConditionFileIsExecutable follow symlinks. ConditionPathIsDirectory does not follow symlinks. (XXX: is this actually the desired behavior?)
* units: direct stdout/stderr of rescue shells to ttyMichal Schmidt2011-09-203-0/+6
| | | | | | With output of services going to syslog by default now, the rescue shell units need to direct their output to tty explicitly. Specify stderr too, just in case.
* units: Add support for automounting configfs, ala debugfs, etc.Bill Nottingham2011-09-203-0/+34
|
* update TODOLennart Poettering2011-09-201-0/+1
|
* stdout-syslog-bridge: properly handle overly long log linesLennart Poettering2011-09-201-10/+20
|
* service: drop broken support for X-Interactive fields in LSB headersLennart Poettering2011-09-201-13/+0
| | | | | | | | The logic never worked since reading from the boot console is useless when a service is started after boot. Hence drop this half-baked code, since we now have a place document incompatibilities like this. http://www.freedesktop.org/wiki/Software/systemd/Incompatibilities
* condition: in ConditionPathIsExecutable follow symlinksLennart Poettering2011-09-201-1/+1
| | | | https://bugzilla.redhat.com/show_bug.cgi?id=737047
* condition: opt out of /proc/cmdline parsing only when running in a ↵Lennart Poettering2011-09-191-1/+1
| | | | container, not in a VM
* hostnamed: Fix "SetStaticHostname" debug outputBastien Nocera2011-09-191-1/+1
| | | | | | Was using the wrong property (eg. not the one we just set) https://bugs.freedesktop.org/show_bug.cgi?id=40987
* man: list specifiers in a tableMathieu Bridon2011-09-061-22/+78
| | | | | | | | | | | It was noted on IRC that the current layout is not necessarily the easiest to parse by humans. I personnally struggled understanding it the first time I read it. Hopefully, this change makes it easier to understand. Note: I only reformatted the information that was already present in the documentation, I didn't add anything.
* man: fix typo in systemd manual pageAlbert Strasheim2011-09-061-1/+1
|
* timedate: fix interfaces listLennart Poettering2011-09-041-1/+1
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=40583
* dbus: terminate mechanism daemons after a whileLennart Poettering2011-09-036-18/+137
|
* stdout-bridge: set facility of messages with no facility to configured ↵Lennart Poettering2011-09-011-2/+2
| | | | facility instead of LOG_USER
* fsck: show progress while fscking at bootLennart Poettering2011-09-015-15/+168
|
* build-sys: bump releasev35Lennart Poettering2011-09-012-2/+2
|
* label: fix database checkLennart Poettering2011-09-011-1/+1
|
* po: Initial Polish translationPiotr Drąg2011-08-311-0/+166
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=39553
* locale: support $LANGUAGE tooLennart Poettering2011-08-314-3/+12
| | | | | | | $LANGUAGE is a GNU extension that is probably worth supporting, since it allows specifiying an order of languages. https://bugs.freedesktop.org/show_bug.cgi?id=40510
* getty: simplify things a bitLennart Poettering2011-08-311-26/+26
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=39818
* getty: automatically add getty on hvsi0 virtualizer consoleLennart Poettering2011-08-312-16/+54
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=39818
* dropin: don't fail if random files are stored in .wants directoriesLennart Poettering2011-08-311-5/+9
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=39957
* systemctl: if we managed to reexec the init system via the bus don't retry ↵Lennart Poettering2011-08-311-1/+1
| | | | | | | | | | via signal If we managed to reeexec the init system via the bus this allows us to provide synchronous behaviour to callers. This is all lost if we then repeat the reexecution via SIGTERM. https://bugzilla.redhat.com/show_bug.cgi?id=698198
* logind: use syspath instead of sysname to identify fb devices since udlfb ↵Lennart Poettering2011-08-311-3/+2
| | | | got fixed now
* man: document /etc/timezoneLennart Poettering2011-08-312-0/+91
|
* mount: fix parsing of prio valueLennart Poettering2011-08-311-1/+1
| | | | https://bugzilla.redhat.com/show_bug.cgi?id=722803
* man: don't recommend After=syslog.target anymore since we don't support ↵Lennart Poettering2011-08-314-21/+3
| | | | non-socket-activatable syslogs anymore where that was ncessary
* getty-generator: ignore if symlinks already existLennart Poettering2011-08-311-6/+13
|
* label: minor fixesLennart Poettering2011-08-311-8/+16
|
* label: introduce label_bind() and make use of it where necessaryLennart Poettering2011-08-313-27/+110
| | | | https://bugzilla.redhat.com/show_bug.cgi?id=729997
* service: change default stdout/stderr to syslogLennart Poettering2011-08-305-10/+21
|
* stdout-bridge: rename logger to stdout-syslog-bridge to make it more descriptiveLennart Poettering2011-08-3015-34/+33
|
* selinux: explicitly relabel /run/initramfs/root-fsck and friendsLennart Poettering2011-08-301-6/+14
|
* specifier: drop misplaced assert()Lennart Poettering2011-08-301-2/+0
|
* selinux: don't relabel /run/initramfsLennart Poettering2011-08-301-5/+12
| | | | | | | | /run/initramfs usually contains the initrd so that we can jump back into it on shutdown. It's usually relatively large and static data, hence we should avoid relabelling of it. On my netbook this saves 6s. (6.6s needed for relabelling /dev and /run goes down to 600ms -- still way too much, but much better).
* selinux: retest selinux after we loaded the policyLennart Poettering2011-08-293-1/+10
|
* logind: downgrade session create/remove log messages to LOG_DEBUG forLennart Poettering2011-08-291-2/+4
| | | | | | cronjobs and similar which have no tty/X11 server assigned https://bugzilla.redhat.com/show_bug.cgi?id=727315
* untis: allow both console and plymouth ask password agents in boot ↵Lennart Poettering2011-08-294-2/+10
| | | | transaction to allow dynamically disabled plymouth
* plymouth: don't enable ask-password agent of plymouth is disabledLennart Poettering2011-08-292-0/+2
|
* execute: fix bus serialization for commandsLennart Poettering2011-08-291-2/+5
|
* man: fix securebits docsLennart Poettering2011-08-292-4/+5
|
* build-sys: bump versionv34Lennart Poettering2011-08-252-2/+2
|
* acl: properly handle if devices are tagged as uaccess but do not have a ↵Lennart Poettering2011-08-252-3/+3
| | | | device node