diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-07-12 02:56:17 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-07-12 03:07:02 +0200 |
commit | 3b6fdb5b5afebc49a7e987e3e3bf7aa2615d1671 (patch) | |
tree | 70ae0f1a280a1103e2c7db9e914c7a3318ced8f7 /man | |
parent | f6023656e10823dff9e4b9f70628b671b3f4ed96 (diff) |
unit: introduce IgnoreDependencyFailure=
Diffstat (limited to 'man')
-rw-r--r-- | man/systemd.special.xml.in | 27 | ||||
-rw-r--r-- | man/systemd.unit.xml | 13 |
2 files changed, 37 insertions, 3 deletions
diff --git a/man/systemd.special.xml.in b/man/systemd.special.xml.in index ac9f0f5a6a..64e37d1149 100644 --- a/man/systemd.special.xml.in +++ b/man/systemd.special.xml.in @@ -84,7 +84,8 @@ <filename>systemd-initctl.service</filename>, <filename>systemd-initctl.socket</filename>, <filename>systemd-logger.service</filename>, - <filename>systemd-logger.socket</filename></para> + <filename>systemd-logger.socket</filename>, + <filename>umount.target</filename></para> </refsynopsisdiv> <refsect1> @@ -499,8 +500,10 @@ terminated on system shutdown shall add Conflicts dependencies to this unit for - their service unit during - installation.</para> + their service unit, which is + implicitly done when + <varname>DefaultDependencies=yes</varname> + is set (the default).</para> <para>systemd automatically adds dependencies of type @@ -653,6 +656,24 @@ kernel log buffer.</para> </listitem> </varlistentry> + <varlistentry> + <term><filename>umount.target</filename></term> + <listitem> + <para>A special target unit + that umounts all mount and + automount points on system + shutdown.</para> + + <para>Mounts that shall be + unmounted on system shutdown + shall add Conflicts + dependencies to this unit for + their mount unit, which is + implicitly done when + <varname>DefaultDependencies=yes</varname> + is set (the default).</para> + </listitem> + </varlistentry> </variablelist> </refsect1> diff --git a/man/systemd.unit.xml b/man/systemd.unit.xml index 554130448f..a03df65dcb 100644 --- a/man/systemd.unit.xml +++ b/man/systemd.unit.xml @@ -482,6 +482,19 @@ ones.</para></listitem> </varlistentry> + <varlistentry> + <term><varname>IgnoreDependencyFailure=</varname></term> + + <listitem><para>Takes a boolean + argument. If <option>true</option> and + a requirement dependency of this unit + fails to start up this unit will be + started nonetheless, ignoring that + failure. If <option>false</option> + (the default) and a dependency unit + fails the unit will immediately fail + too and the job is removed.</para></listitem> + </varlistentry> </variablelist> <para>Unit file may include a [Install] section, which |