Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-02-13 | service: make main pid guessing optional, and reread pid file after reloads | Lennart Poettering | |
2011-01-20 | service: make chain of main commands and control commands independent of ↵ | Lennart Poettering | |
each other, so that both can be executed simultaneously and independently | |||
2011-01-20 | service: don't allow reload operations for oneshot services | Lennart Poettering | |
During starting of oneshot we are in START state which we don't want to combine with the RELOAD state, hence we disallow both at the same time. | |||
2011-01-20 | systemctl: highlight failed processes in systemctl status | Lennart Poettering | |
2011-01-20 | service: when reloading a service fails don't fail the entire service but ↵ | Lennart Poettering | |
just the reload job | |||
2011-01-18 | service: if a reload operation fails, don't shut down the service | Lennart Poettering | |
2011-01-18 | execute: make sending of SIGKILL on shutdown optional | Lennart Poettering | |
2011-01-17 | arch: remove support for legacy daemons | Tom Gundersen | |
This is now done by a generator, shipped downstream. | |||
2011-01-07 | service: don't hit an assert if information in LSB headers is incorrectly ↵ | Lennart Poettering | |
formatted https://bugzilla.redhat.com/show_bug.cgi?id=667665 | |||
2010-12-27 | service: ifdef (more) distro-specific compat logic | Michael Biebl | |
This should make it easier to get rid of that compat code later and avoids problems like stripping of rc. from /etc/init.d/rc.local on Debian. | |||
2010-12-16 | service: ifdef distro-specific compat logic | Kay Sievers | |
2010-12-16 | service: drop rc. prefix on frugalware linux | Miklos Vajna | |
2010-12-09 | suse: add 'smtp' LSB facility | Kay Sievers | |
2010-11-29 | build-sys: frugalware linux support | Miklos Vajna | |
2010-11-17 | cgroup: by default, duplicate service cgroup in the cpu hierarchy | Lennart Poettering | |
2010-11-15 | exec: automatically determine right TERM= setting based on tty name | Lennart Poettering | |
2010-11-15 | drop support for MANAGER_SESSION, introduce MANAGER_USER instead | Lennart Poettering | |
2010-11-10 | service: delay automatic restart if job is pending | Lennart Poettering | |
2010-10-29 | unit: get rid of gnoreDependencyFailure= instead treat ConflictedBy= as ↵ | Lennart Poettering | |
weaker counterpart of Conflicts=, similar to Wants= vs. Requires= | |||
2010-10-28 | service: unify tstamp serialization code | Lennart Poettering | |
2010-10-27 | service: when after startup only one process is in a service's cgroup, ↵ | Lennart Poettering | |
assume it is the main process | |||
2010-10-26 | service: fix sysv-less build | Mike Kazantsev | |
2010-10-26 | service: make sure to pass TERM=linux to all sysv scripts | Lennart Poettering | |
2010-10-25 | ubuntu: Treat Ubuntu as a distinct distro in configure.ac etc | Andrew Edmunds | |
Previously Ubuntu was treated as being equivalent to Debian, but the two distributions require different behaviour in certain places. This commit does not change the behaviour of systemd on either distro but it creates a framework for changes to be introduced by later commits. The following previously meant "Target is Debian or Ubuntu". * configure option "--with-distro=debian" * C preprocessor symbol "TARGET_DEBIAN" * Automake conditional "TARGET_DEBIAN" After this commit, all of the above are redefined to mean "Target is Debian" The following are introduced to mean "Target is Ubuntu". * configure option "--with-distro=ubuntu" * C preprocessor symbol "TARGET_UBUNTU" * Automake conditional "TARGET_UBUNTU" Most code written for Debian will also be applicable to Ubuntu. An extra Automake conditional "TARGET_DEBIAN_OR_UBUNTU" is introduced to avoid duplication of code that would otherwise occur. This commit updates configure.ac, Makefile.am and distro-specific source files in line with the above definitions. | |||
2010-10-22 | systemctl: introduce systemctl kill | Lennart Poettering | |
2010-10-14 | manager: hookup shutdown helper and signals | Lennart Poettering | |
2010-10-13 | mount: hook in q fsck@.service instance for all mount points with passno > 0 | Lennart Poettering | |
2010-10-08 | service: introduce Restart=on-failure and Restart=on-abort | Lennart Poettering | |
2010-10-08 | service: optionally, create INIT_PROCESS/DEAD_PROCESS entries for a service | Lennart Poettering | |
This should fix accounting for pam_limits and suchlike. https://bugzilla.redhat.com/show_bug.cgi?id=636036 | |||
2010-10-08 | service: increase default timeout for sysv scripts to 3min | Lennart Poettering | |
For SysV services we cannot set the timeout inside the configuration file. Hence let's pick a large timeout by default. https://bugzilla.redhat.com/show_bug.cgi?id=635393 | |||
2010-10-05 | service: rename settings for Restart= from 'restart-always' to 'always' and ↵ | Lennart Poettering | |
similar | |||
2010-10-05 | socket: make sockets to pass to a service configurable | Lennart Poettering | |
2010-09-28 | service: first lookup LSB facility names in tables, only then suppress ↵ | Lennart Poettering | |
self-provides | |||
2010-09-28 | service: Don't crash because of double free when Arch services are disabled ↵ | Matthias Schiffer | |
in rc.conf | |||
2010-09-28 | service: filter out empty LSB description strings | Lennart Poettering | |
2010-09-28 | service: when resolving sysv names drop leading $ | 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 | service: don't create sysv order deps on merged units | 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-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-14 | service: fix check for non-LSB files | Lennart Poettering | |
2010-09-13 | service: add generic LSB provides handling for facilities | Lennart Poettering | |
2010-09-13 | service: translate 'httpd' LSB Provides into '$httpd' on Fedora | Lennart Poettering | |
2010-09-11 | service: don't automatically add D-Bus service name as an alias to all dbus ↵ | Lennart Poettering | |
service, rely on manual symlinks to allow disabling of dbus services | |||
2010-09-03 | service: calculate sysv startup priority only in start runlevels | Lennart Poettering | |
2010-09-03 | service: make sure we properly figure out whether a sysv service is enabled ↵ | Lennart Poettering | |
before creating $foo wants links | |||
2010-09-03 | service: properly handle if the main process is down and we wait for the ↵ | Lennart Poettering | |
cgroup to die, too | |||
2010-09-01 | service: recheck PID status when a cgroup runs empty | Lennart Poettering | |
2010-09-01 | service: wait for process exit only if we actually killed somebody | Lennart Poettering | |