X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=man%2Fsystemd.unit.xml;h=da077e2097bfe37d77b28dcd8094e3c3ee657f64;hp=81634410c15244d4f529cf8cc3e02c4bf55eacb5;hb=1f812feafb4b98d5cfa2934886bbdd43325780bb;hpb=c0115b1f4a09b709a2d062a4f2baf21203c808bd diff --git a/man/systemd.unit.xml b/man/systemd.unit.xml index 81634410c..da077e209 100644 --- a/man/systemd.unit.xml +++ b/man/systemd.unit.xml @@ -144,6 +144,44 @@ activation which makes dependencies implicit, which both results in a simpler and more flexible system. + + Some unit names reflect paths existing in the + file system name space. Example: a device unit + dev-sda.device refers to a device + with the device node /dev/sda in + the file system namespace. If this applies a special + way to escape the path name is used, so that it is + usable as part of a file name. Basically, given a path, + "/" is replaced by "-", and all unprintable characters + and the "-" are replaced by C-style "\x20" + escapes. This escaping is reversible. + + Optionally, units may be instantiated from a + template file at runtime. This allows creation of + multiple units from a single configuration file. If + systemd looks for a unit configuration file it will + first search for the literal unit name in the + filesystem. If that yields no success and the unit + name contains an @ character, systemd will look for a + unit template that shares the same name but with the + instance string (i.e. the part between the @ character + and the suffix) removed. Example: if a service + getty@tty3.service is requested + and no file by that name is found, systemd will look + for getty@.service and + instantiate a service from that configuration file if + it is found. To refer to the instance string from + within the configuration file you may use the special + %i specifier in many of the + configuration options. Other specifiers that may be + used are %n, %N, + %p, %P and + %I, for the full unit name, the + unescaped unit name, the prefix name, the unescaped + prefix name and the unescaped instance name, + respectively. The prefix name here refers to the + string before the @, i.e. "getty" in the example + above, where "tty3" is the instance name.