diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-10-05 20:30:44 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-10-05 20:30:44 +0200 |
commit | 525ee6f4a1639bcb28198bf9e32b93ca2bfd268b (patch) | |
tree | 0fe1a65c8b084a4d754ca810f2397bf13640e4e1 /man | |
parent | d0b4880988c5900c0f951aa6fe700686411cd03e (diff) |
service: rename settings for Restart= from 'restart-always' to 'always' and similar
Diffstat (limited to 'man')
-rw-r--r-- | man/systemd.service.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/man/systemd.service.xml b/man/systemd.service.xml index 6ab3bc3601..d573ec6f96 100644 --- a/man/systemd.service.xml +++ b/man/systemd.service.xml @@ -428,17 +428,17 @@ <listitem><para>Configures whether the main service process shall be restarted when it exists. Takes one of - <option>once</option>, - <option>restart-on-success</option> or - <option>restart-always</option>. If - set to <option>once</option> (the + <option>no</option>, + <option>on-success</option> or + <option>always</option>. If + set to <option>no</option> (the default) the service will not be restarted when it exits. If set to - <option>restart-on-success</option> it + <option>on-success</option> it will be restarted only when it exited cleanly, i.e. terminated with an exit code of 0. If set to - <option>restart-always</option> the + <option>always</option> the service will be restarted regardless whether it exited cleanly or not, or got terminated abnormally by a |