summaryrefslogtreecommitdiff
path: root/man/systemd.service.xml
AgeCommit message (Collapse)Author
2012-09-13man: fix a bunch of typos in docsThomas Hindoe Paaboel Andersen
https://bugs.freedesktop.org/show_bug.cgi?id=54501
2012-09-05man: document that ExecStart= doesn't understand shell command linesLennart Poettering
2012-08-14man: extend documentation for RestartPreventExitStatus= and ↵Lennart Poettering
SuccessExitStatus= a bit
2012-08-14service: add options RestartPreventExitStatus and SuccessExitStatusLukas Nykryn
In some cases, like wrong configuration, restarting after error does not help, so administrator can specify statuses by RestartPreventExitStatus which will not cause restart of a service. Sometimes you have non-standart exit status, so this can be specified by SuccessfulExitStatus.
2012-08-08systemd: introduced new timeout typesMichal Sekletar
Makes possible to specify separate timeout for start and stop of the service. [ Improved the manpage. Coding style fix. -- michich ]
2012-07-20unit: split off KillContext from ExecContext containing only kill definitionsLennart Poettering
2012-07-16man: reword man page titlesLennart Poettering
Make sure the man page titles are similar in style and capitalization so that our man page index looks pretty.
2012-07-04man: document Restart= a bit moreLennart Poettering
2012-07-04service: flush the start counter in "systemctl reset-failed"Lennart Poettering
2012-07-04man: clarify that StartLimitInterval= also applies to manual startsLennart Poettering
2012-07-04man: explain StartLimitRate= in conjunction with Restart= a bit betterLennart Poettering
2012-06-28man: add various links from man pages to appropriate wiki pagesLennart Poettering
2012-06-28man: extend watchdog docs a bitLennart Poettering
2012-06-15service: timeout for oneshot servicesLukas Nykryn
Add possibility to specify timeout for oneshot services. [ https://bugzilla.redhat.com/show_bug.cgi?id=761656 Added minor fixups. -- michich ]
2012-05-30service: mark compat options as suchLennart Poettering
This moves FsckPassNo= and SysVStartPriority= into its own "Compatibility Options" section in the man page to clarify that these options are not useful for anything but establishing a limited amount of compatibility. Also stop exposing these options on the bus.
2012-05-23man: properly document FsckPassNo= for mount unitsLennart Poettering
2012-05-21service: make the fsck pass no configurableLennart Poettering
2012-05-03service: default to Type=dbus if BusName= is specifiedLennart Poettering
2012-04-30man: fix typoKay Sievers
2012-04-30service: document new Type=idleLennart Poettering
2012-04-12relicense to LGPLv2.1 (with exceptions)Lennart Poettering
We finally got the OK from all contributors with non-trivial commits to relicense systemd from GPL2+ to LGPL2.1+. Some udev bits continue to be GPL2+ for now, but we are looking into relicensing them too, to allow free copy/paste of all code within systemd. The bits that used to be MIT continue to be MIT. The big benefit of the relicensing is that closed source code may now link against libsystemd-login.so and friends.
2012-02-09service: imply NotifyAccess=main if WatchdogSec= is usedLennart Poettering
2012-02-09man: document restart optionsLennart Poettering
2012-02-09man: fix XMLLennart Poettering
Spotted by Sergey Ptashnick.
2012-02-08man: document the WATCHDOG_USEC environment variableLennart Poettering
2012-02-08service: introduce WatchdogSec and hook up the watchdog with the existing ↵Michael Olbrich
failure logic
2011-12-17man: fix misplaced remark in description of Sockets=Michal Schmidt
2011-10-11man: for ExecStart= provide more details on env var substitution and how ↵Barry Scott
that turns into arguments. For EnvironmentFile= explain that double quotes can be used to protect whitespace.
2011-04-27def: lower default timeout to 90sLennart Poettering
Almost everybody found 3min too long, so lower it again
2011-04-20man: fix specification of default timeoutsLennart Poettering
2011-03-29exec: drop process group kill mode since it has little use and confuses the userLennart Poettering
2011-03-18special: get rid of dbus.targetLennart Poettering
2011-02-13service: make main pid guessing optional, and reread pid file after reloadsLennart Poettering
2011-02-09man: clarify a few thingsLennart Poettering
2011-01-18execute: make sending of SIGKILL on shutdown optionalLennart Poettering
2011-01-18man: document missing KillSignal= and swap optionsLennart Poettering
2011-01-01man: remaining spelling fixesMiklos Vajna
2010-11-11man: Fix various typosAndrew Edmunds
2010-10-20service: implement FsckPassNo= optionLennart Poettering
2010-10-19man: properly refer to $MAINPID instead of $(MAINPID) which doesnt work anymoreLennart Poettering
2010-10-08service: introduce Restart=on-failure and Restart=on-abortLennart Poettering
2010-10-05fix typo: s/seperat/separat/gDave Reisner
2010-10-05man: fix typoLennart Poettering
2010-10-05man: document Sockets= switchLennart Poettering
2010-10-05service: rename settings for Restart= from 'restart-always' to 'always' and ↵Lennart Poettering
similar
2010-09-15man: document that first param to ExecStart= cannot be variable substitutionLennart Poettering
https://bugzilla.redhat.com/show_bug.cgi?id=630156
2010-09-06man: Fix small typo: s/seperate/separate/Michael Biebl
2010-08-17service: rename ValidNoProcess= to RemainAfterExit=Lennart Poettering
2010-08-13man: document that we now accept more than one main process for Type=oneshot ↵Lennart Poettering
services
2010-08-13service: rename Type=finish to Type=oneshot and allow multiple ExecStart= ↵Lennart Poettering
lines for oneshot services In contrast to the other service types oneshot services are usually not long lasting and there's not necessarily a single clean main process for them. This change allows multiple ExecStart= lines for this type of services so that the admin/developer doesn't have to arbitrarily pick on of various sequential commands as the "main one".