From Fedora Project Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Name

systemd.unit — systemd unit configuration files

Synopsis

systemd.service, systemd.socket, systemd.device, systemd.mount, systemd.automount, systemd.swap, systemd.target, systemd.path, systemd.timer, systemd.snapshot

Description

A unit configuration file encodes information about a service, a socket, a device, a mount point, an automount point, a swap file or partition, a start-up target, a file system path or a timer controlled and supervised by systemd(1). The syntax is inspired by XDG Desktop Entry Specification .desktop files, which are in turn inspired by Microsoft Windows .ini files.

This man pages lists the common configuration options of all the unit types. These options need to be configured in the [Unit] resp. [Install] section of the unit files.

In addition to the generic [Unit] and [Install] sections described here, each unit should have a type-specific section, e.g. [Service] for a service unit. See the respective man pages for more information.

Unit files may contain additional options on top of those listed here. If systemd encounters an unknown option it will write a warning log message but continue loading the unit. If an option is prefixed with X- it is ignored completely by systemd. Applications may use this to include additional information in the unit files.

Boolean arguments used in unit files can be written in various formats. For positive settings the strings 1, yes, true and on are equivalent. For negative settings the strings 0, no, false and off are equivalent.

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 concatenation of multiple values 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.

Empty lines and lines starting with # or ; are ignored. This may be used for commenting. Lines ending in a backslash are concatenated with the following line while reading and the backslash is replaced by a space character. This may be used to wrap long lines.

If a line starts with .include followed by a file name, the specified file will be read as if its contents were listed in place of the .include directive.

Along with a unit file foo.service a directory foo.service.wants/ may exist. All units symlinked from such a directory are implicitly added as dependencies of type Wanted= to the unit. This is useful to hook units into the start-up of other units, without having to modify their unit configuration files. For details about the semantics of Wanted= see below. The preferred way to create symlinks in the .wants/ directory of a service is with the systemd-install(1) tool which reads information from the [Install] section of unit files. (See below.)

Note that while systemd offers a flexible dependency system between units it is recommended to use this functionality only sparsely and instead rely on techniques such as bus-based or socket-based 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 the result 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. The root directory "/" is encoded as single dash, while otherwise the initial and ending "/" is removed from all paths during transformation. 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.

Options

Unit file may include a [Unit] section, which carries generic information about the unit that is not dependent on the type of unit:

Names=

Additional names for this unit. The names listed here must have the same suffix (i.e. type) as the unit file name. This option may be specified more than once, in which case all listed names are used. Note that this option is different from the Alias= option from the [Install] section mentioned below. See below for details.

Description=

A free-form string describing the unit. This is intended for use in UIs to show descriptive information along with the unit name.

Requires=

Configures requirement dependencies on other units. If this unit gets activated, the units listed here will be activated as well. If one of the other units gets deactivated or its activation fails, this unit will be deactivated. This option may be specified more than once, in which case requirement dependencies for all listed names are created. Note that requirement dependencies do not influence the order in which services are started or stopped. This has to be configured independently with the After= or Before= options. If a unit foo.service requires a unit bar.service as configured with Requires= and no ordering is configured with After= or Before=, then both units will be started simultaneously and without any delay between them if foo.service is activated. Often it is a better choice to use Wants= instead of Requires= in order to achieve a system that is more robust when dealing with failing services.

RequiresOverridable=

Similar to Requires=. Dependencies listed in RequiresOverridable= which cannot be fulfilled or fail to start are ignored if the startup was explicitly requested by the user. If the start-up was pulled in indirectly by some dependency or automatic start-up of units that is not requested by the user this dependency must be fulfilled and otherwise the transaction fails. Hence, this option may be used to configure dependencies that are normally honored unless the user explicitly starts up the unit, in which case whether they failed or not is irrelevant.

Requisite=, RequisiteOverridable=

Similar to Requires= resp. RequiresOverridable=. However, if a unit listed here is not started already it will not be started and the transaction fails immediately.

Wants=

A weaker version of Requires=. A unit listed in this option will be started if the configuring unit is. However, if the listed unit fails to start up or cannot be added to the transaction this has no impact on the validity of the transaction as a whole. This is the recommended way to hook start-up of one unit to the start-up of another unit. Note that dependencies of this type may also be configured outside of the unit configuration file by adding a symlink to a .wants/ directory accompanying the unit file. For details see above.

Conflicts=

Configures negative requirement dependencies. If a unit has a Conflicts= setting on another unit, starting the former will stop the latter and vice versa. Note that this setting is independent of and orthogonal to the After= and Before= ordering dependencies.

Before=, After=

Configures ordering dependencies between units. If a unit foo.service contains a setting Before=bar.service and both units are being started, bar.service's start-up is delayed until foo.service is started up. Note that this setting is independent of and orthogonal to the requirement dependencies as configured by Requires=. It is a common pattern to include a unit name in both the After= and Requires= option in which case the unit listed will be started before the unit that is configured with these options. This option may be specified more than once, in which case ordering dependencies for all listed names are created. After= is the inverse of Before=, i.e. while After= ensures that the configured unit is started after the listed unit finished starting up, Before= ensures the opposite, i.e. that the configured unit is fully started up before the listed unit is started. Note that when two units with an ordering dependency between them are shut down, the inverse of the start-up order is applied. i.e. if a unit is configured with After= on another unit, the former is stopped before the latter if both are shut down. If one unit with an ordering dependency on another unit is shut down while the latter is started up, the shut down is ordered before the start-up regardless whether the ordering dependency is actually of type After= or Before=. If two units have no ordering dependencies between them they are shut down resp. started up simultaneously, and no ordering takes place.

RecursiveStop=

Takes a boolean argument. If true and the unit stops without being requested by the user, all units depending on it will be stopped as well. (e.g. if a service exits or crashes on its own behalf, units using it will be stopped) Note that normally if a unit stops without a user request, units depending on it will not be terminated. Only if the user requested shutdown of a unit, all units depending on that unit will be shut down as well and at the same time. Defaults to false.

StopWhenUnneeded=

Takes a boolean argument. If true this unit will be stopped when it is no longer used. Note that in order to minimize the work to be executed, systemd will not stop units by default unless they are conflicting with other units, or the user explicitly requested their shut down. If this option is set, a unit will be automatically cleaned up if no other active unit requires it. Defaults to false.

OnlyByDependency=

Takes a boolean argument. If true this unit can only be activated indirectly. In this case explicit start-up requested by the user is denied, however if it is started as a dependency of another unit, start-up will succeed. This is mostly a safety feature to ensure that the user does not accidentally activate units that are not intended to be activated explicitly. This option defaults to false.

DefaultDependencies=

Takes a boolean argument. If true (the default), a few default dependencies will implicitly be created for the unit. The actual dependencies created depend on the unit type. For example, for service units, these dependencies ensure that the service is started only after basic system initialization is completed and is properly terminated on system shutdown. See the respective man pages for details. Generally, only services involved with early boot or late shutdown should set this option to false. It is highly recommended to leave this option enabled for the majority of common units. If set to false this option does not disable all implicit dependencies, just non-essential ones.

IgnoreDependencyFailure=

Takes a boolean argument. If true and a requirement dependency of this unit fails to start up this unit will be started nonetheless, ignoring that failure. If false (the default) and a dependency unit fails the unit will immediately fail too and the job is removed.

Unit file may include a [Install] section, which carries installation information for the unit. This section is not interpreted by systemd(1) during runtime. It is used exclusively by the systemd-install(1) tool during installation of a unit:

Alias=

Additional names this unit shall be installed under. The names listed here must have the same suffix (i.e. type) as the unit file name. This option may be specified more than once, in which case all listed names are used. At installation time, systemd-install will create symlinks from these names to the unit file name. Note that this is different from the Names= option from the [Unit] section mentioned above: The names from Names= apply unconditionally if the unit is loaded. The names from Alias= apply only if the unit has actually been installed with the systemd-install tool. Also, if systemd searches for a unit, it will discover symlinked alias names as configured with Alias=, but not names configured with Names= only. It is a common pattern to list a name in both options. In this case, a unit will be active under all names if installed, but also if not installed but requested explicitly under its main name.

WantedBy=

Installs a symlink in the .wants/ subdirectory for a unit. This has the effect that when the listed unit name is activated the unit listing it is activated too. WantedBy=foo.service in a service bar.service is mostly equivalent to Alias=foo.service.wants/bar.service in the same file.

Also=

Additional units to install when this unit is installed. If the user requests installation of a unit with this option configured, systemd-install will automatically install units listed in this option as well.

See Also

systemd(1), systemctl(8), systemd-install(1), systemd.special(7), systemd.service(5), systemd.socket(5), systemd.device(5), systemd.mount(5), systemd.automount(5), systemd.swap(5), systemd.target(5), systemd.path(5), systemd.timer(5), systemd.snapshot(5)