man: finish service man page

This commit is contained in:
Lennart Poettering
2010-07-01 19:39:35 +02:00
parent 16c42ce173
commit 0d624a785a
4 changed files with 416 additions and 108 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -246,8 +246,8 @@
mounts listed in
<filename>/etc/fstab</filename>
that have the
<literal>auto</literal> and
<literal>comment=systemd.mount</literal>
<option>auto</option> and
<option>comment=systemd.mount</option>
mount options set.</para>
<para>systemd automatically

View File

@@ -102,6 +102,16 @@
<option>false</option> and <option>off</option> are
equivalent.</para>
<para>Time span values encoded in unit files can be
written in various formats. A stand-alone number
specifies a time in seconds. If suffixed with a time
unit, the unit is honored. A concatentation of
multiple value with units is supported, in which case
the values are added up. Example: "50" refers to 50
seconds; "2min 200ms" refers to 2 minutes plus 200
milliseconds, i.e. 120200ms. The following time units
are understood: s, min, h, d, w, ms, us.</para>
<para>Empty lines and lines starting with # or ; are
ignored. This may be used for commenting.</para>

View File

@@ -2625,8 +2625,8 @@ static const char* const service_restart_table[_SERVICE_RESTART_MAX] = {
DEFINE_STRING_TABLE_LOOKUP(service_restart, ServiceRestart);
static const char* const service_type_table[_SERVICE_TYPE_MAX] = {
[SERVICE_FORKING] = "forking",
[SERVICE_SIMPLE] = "simple",
[SERVICE_FORKING] = "forking",
[SERVICE_FINISH] = "finish",
[SERVICE_DBUS] = "dbus",
[SERVICE_NOTIFY] = "notify"