]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/systemd-run.xml
core: add a new unit file setting CollectMode= for tweaking the GC logic
[thirdparty/systemd.git] / man / systemd-run.xml
CommitLineData
3802a3d3 1<?xml version='1.0'?> <!--*- Mode: nxml; nxml-child-indent: 2; indent-tabs-mode: nil -*-->
f09114bc 2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
12b42c76 3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
f09114bc
ZJS
4
5<!--
b975b0d5 6 This file is part of systemd.
f09114bc 7
b975b0d5 8 Copyright 2013 Zbigniew Jędrzejewski-Szmek
f09114bc 9
b975b0d5
ZJS
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
f09114bc 14
b975b0d5
ZJS
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
f09114bc 19
b975b0d5
ZJS
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
f09114bc
ZJS
22-->
23
dfdebb1b
ZJS
24<refentry id="systemd-run"
25 xmlns:xi="http://www.w3.org/2001/XInclude">
f09114bc
ZJS
26
27 <refentryinfo>
28 <title>systemd-run</title>
29 <productname>systemd</productname>
30
31 <authorgroup>
32 <author>
33 <contrib>Developer</contrib>
34 <firstname>Lennart</firstname>
35 <surname>Poettering</surname>
36 <email>lennart@poettering.net</email>
37 </author>
38 </authorgroup>
39 </refentryinfo>
40
41 <refmeta>
42 <refentrytitle>systemd-run</refentrytitle>
43 <manvolnum>1</manvolnum>
44 </refmeta>
45
46 <refnamediv>
47 <refname>systemd-run</refname>
ad2c1701 48 <refpurpose>Run programs in transient scope units, service units, or timer-scheduled service units</refpurpose>
f09114bc
ZJS
49 </refnamediv>
50
51 <refsynopsisdiv>
52 <cmdsynopsis>
53 <command>systemd-run</command>
54 <arg choice="opt" rep="repeat">OPTIONS</arg>
55 <arg choice="plain"><replaceable>COMMAND</replaceable>
56 <arg choice="opt" rep="repeat">ARGS</arg>
57 </arg>
58 </cmdsynopsis>
4c213d6c
WC
59 <cmdsynopsis>
60 <command>systemd-run</command>
61 <arg choice="opt" rep="repeat">OPTIONS</arg>
62 <arg choice="opt" rep="repeat">TIMER OPTIONS</arg>
63 <arg choice="req"><replaceable>COMMAND</replaceable></arg>
64 <arg choice="opt" rep="repeat">ARGS</arg>
65 </cmdsynopsis>
f09114bc
ZJS
66 </refsynopsisdiv>
67
68 <refsect1>
69 <title>Description</title>
70
014c4c98
LP
71 <para><command>systemd-run</command> may be used to create and start a transient <filename>.service</filename> or
72 <filename>.scope</filename> unit and run the specified <replaceable>COMMAND</replaceable> in it. It may also be
73 used to create and start a transient <filename>.timer</filename> unit, that activates a
74 <filename>.service</filename> unit when elapsing.</para>
75
76 <para>If a command is run as transient service unit, it will be started and managed by the service manager like any
77 other service, and thus shows up in the output of <command>systemctl list-units</command> like any other unit. It
78 will run in a clean and detached execution environment, with the service manager as its parent process. In this
79 mode, <command>systemd-run</command> will start the service asynchronously in the background and return after the
b03ec009 80 command has begun execution (unless <option>--no-block</option> or <option>--wait</option> are specified, see
014c4c98
LP
81 below).</para>
82
83 <para>If a command is run as transient scope unit, it will be executed by <command>systemd-run</command> itself as
84 parent process and will thus inherit the execution environment of the caller. However, the processes of the command
85 are managed by the service manager similar to normal services, and will show up in the output of <command>systemctl
86 list-units</command>. Execution in this case is synchronous, and will return only when the command finishes. This
87 mode is enabled via the <option>--scope</option> switch (see below). </para>
88
89 <para>If a command is run with timer options such as <option>--on-calendar=</option> (see below), a transient timer
90 unit is created alongside the service unit for the specified command. Only the transient timer unit is started
91 immediately, the transient service unit will be started when the timer elapses. If the <option>--unit=</option>
92 option is specified, the <replaceable>COMMAND</replaceable> may be omitted. In this case,
93 <command>systemd-run</command> creates only a <filename>.timer</filename> unit that invokes the specified unit when
94 elapsing.</para>
f09114bc
ZJS
95 </refsect1>
96
97 <refsect1>
98 <title>Options</title>
99
100 <para>The following options are understood:</para>
101
102 <variablelist>
8c7db2fb
EV
103 <varlistentry>
104 <term><option>--no-ask-password</option></term>
105
106 <listitem><para>Do not query the user for authentication for
107 privileged operations.</para></listitem>
108 </varlistentry>
109
f09114bc
ZJS
110 <varlistentry>
111 <term><option>--scope</option></term>
112
113 <listitem>
014c4c98
LP
114 <para>Create a transient <filename>.scope</filename> unit instead of the default transient
115 <filename>.service</filename> unit (see above).
f09114bc
ZJS
116 </para>
117 </listitem>
118 </varlistentry>
119
120 <varlistentry>
121 <term><option>--unit=</option></term>
122
123 <listitem><para>Use this unit name instead of an automatically
124 generated one.</para></listitem>
125 </varlistentry>
126
df31a6c0
LP
127 <varlistentry>
128 <term><option>--property=</option></term>
129 <term><option>-p</option></term>
130
014c4c98
LP
131 <listitem><para>Sets a property on the scope or service unit that is created. This option takes an assignment
132 in the same format as
df31a6c0
LP
133 <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>'s
134 <command>set-property</command> command.</para>
135 </listitem>
136 </varlistentry>
137
f09114bc
ZJS
138 <varlistentry>
139 <term><option>--description=</option></term>
140
014c4c98
LP
141 <listitem><para>Provide a description for the service, scope or timer unit. If not specified, the command
142 itself will be used as a description. See <varname>Description=</varname> in
f09114bc
ZJS
143 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
144 </para></listitem>
145 </varlistentry>
146
147 <varlistentry>
148 <term><option>--slice=</option></term>
149
014c4c98
LP
150 <listitem><para>Make the new <filename>.service</filename> or <filename>.scope</filename> unit part of the
151 specified slice, instead of <filename>system.slice</filename>.</para>
f09114bc
ZJS
152 </listitem>
153 </varlistentry>
6577c7ce
LP
154
155 <varlistentry>
156 <term><option>--remain-after-exit</option></term>
157
014c4c98
LP
158 <listitem><para>After the service process has terminated, keep the service around until it is explicitly
159 stopped. This is useful to collect runtime information about the service after it finished running. Also see
6577c7ce
LP
160 <varname>RemainAfterExit=</varname> in
161 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
162 </para>
163 </listitem>
164 </varlistentry>
a6c0353b
LP
165
166 <varlistentry>
167 <term><option>--send-sighup</option></term>
168
014c4c98
LP
169 <listitem><para>When terminating the scope or service unit, send a SIGHUP immediately after SIGTERM. This is
170 useful to indicate to shells and shell-like processes that the connection has been severed. Also see
981ee551 171 <varname>SendSIGHUP=</varname> in
a6c0353b
LP
172 <citerefentry><refentrytitle>systemd.kill</refentrytitle><manvolnum>5</manvolnum></citerefentry>.
173 </para>
174 </listitem>
175 </varlistentry>
dfdebb1b 176
981ee551
LP
177 <varlistentry>
178 <term><option>--service-type=</option></term>
179
180 <listitem><para>Sets the service type. Also see
181 <varname>Type=</varname> in
182 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>. This
183 option has no effect in conjunction with
184 <option>--scope</option>. Defaults to
185 <constant>simple</constant>.</para>
186 </listitem>
187 </varlistentry>
188
189 <varlistentry>
190 <term><option>--uid=</option></term>
191 <term><option>--gid=</option></term>
192
014c4c98
LP
193 <listitem><para>Runs the service process under the specified UNIX user and group. Also see
194 <varname>User=</varname> and <varname>Group=</varname> in
4de33e7f 195 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
981ee551
LP
196 </listitem>
197 </varlistentry>
198
199 <varlistentry>
200 <term><option>--nice=</option></term>
201
202 <listitem><para>Runs the service process with the specified
203 nice level. Also see <varname>Nice=</varname> in
4de33e7f 204 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
981ee551
LP
205 </listitem>
206 </varlistentry>
207
208 <varlistentry>
b5911366
ZJS
209 <term><option>-E <replaceable>NAME</replaceable>=<replaceable>VALUE</replaceable></option></term>
210 <term><option>--setenv=<replaceable>NAME</replaceable>=<replaceable>VALUE</replaceable></option></term>
981ee551 211
b5911366
ZJS
212 <listitem><para>Runs the service process with the specified environment variable set.
213 Also see <varname>Environment=</varname> in
4de33e7f 214 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>.</para>
981ee551
LP
215 </listitem>
216 </varlistentry>
217
9b15b784
LP
218 <varlistentry>
219 <term><option>--pty</option></term>
220 <term><option>-t</option></term>
221
5dca7739
LP
222 <listitem><para>When invoking the command, the transient service connects its standard input, output and error
223 to the terminal <command>systemd-run</command> is invoked on, via a pseudo TTY device. This allows running
156d6036 224 programs that expect interactive user input/output as services, such as interactive command shells.</para>
7f129a1f
LP
225
226 <para>Note that
227 <citerefentry><refentrytitle>machinectl</refentrytitle><manvolnum>1</manvolnum></citerefentry>'s
228 <command>shell</command> command is usually a better alternative for requesting a new, interactive login
5dca7739
LP
229 session on the local host or a local container.</para>
230
231 <para>See below for details on how this switch combines with <option>--pipe</option>.</para></listitem>
232 </varlistentry>
233
234 <varlistentry>
235 <term><option>--pipe</option></term>
236 <term><option>-P</option></term>
237
238 <listitem><para>If specified, standard input, output, and error of the transient service are inherited from the
156d6036
ZJS
239 <command>systemd-run</command> command itself. This allows <command>systemd-run</command>
240 to be used within shell pipelines.
241 Note that this mode is not suitable for interactive command shells and similar, as the
960d20e1 242 service process will not become a TTY controller when invoked on a terminal. Use <option>--pty</option> instead
5dca7739
LP
243 in that case.</para>
244
245 <para>When both <option>--pipe</option> and <option>--pty</option> are used in combination the more appropriate
246 option is automatically determined and used. Specifically, when invoked with standard input, output and error
b0e8cec2
LP
247 connected to a TTY <option>--pty</option> is used, and otherwise <option>--pipe</option>.</para>
248
249 <para>When this option is used the original file descriptors <command>systemd-run</command> receives are passed
250 to the service processes as-is. If the service runs with different privileges than
251 <command>systemd-run</command>, this means the service might not be able to re-open the passed file
252 descriptors, due to normal file descriptor access restrictions. If the invoked process is a shell script that
253 uses the <command>echo "hello" > /dev/stderr</command> construct for writing messages to stderr, this might
254 cause problems, as this only works if stderr can be re-opened. To mitigate this use the construct <command>echo
255 "hello" >&amp;2</command> instead, which is mostly equivalent and avoids this pitfall.</para></listitem>
9b15b784 256 </varlistentry>
88ae7333 257
095dc596
LP
258 <varlistentry>
259 <term><option>--quiet</option></term>
260 <term><option>-q</option></term>
261
262 <listitem><para>Suppresses additional informational output
263 while running. This is particularly useful in combination with
264 <option>--pty</option> when it will suppress the initial
265 message explaining how to terminate the TTY connection.</para></listitem>
266 </varlistentry>
267
4c213d6c
WC
268 <varlistentry>
269 <term><option>--on-active=</option></term>
270 <term><option>--on-boot=</option></term>
271 <term><option>--on-startup=</option></term>
272 <term><option>--on-unit-active=</option></term>
273 <term><option>--on-unit-inactive=</option></term>
274
014c4c98
LP
275 <listitem><para>Defines a monotonic timer relative to different starting points for starting the specified
276 command. See <varname>OnActiveSec=</varname>, <varname>OnBootSec=</varname>, <varname>OnStartupSec=</varname>,
277 <varname>OnUnitActiveSec=</varname> and <varname>OnUnitInactiveSec=</varname> in
278 <citerefentry><refentrytitle>systemd.timer</refentrytitle><manvolnum>5</manvolnum></citerefentry> for
c04becfa 279 details. These options may not be combined with <option>--scope</option> or <option>--pty</option>.</para>
4c213d6c
WC
280 </listitem>
281 </varlistentry>
282
283 <varlistentry>
284 <term><option>--on-calendar=</option></term>
285
014c4c98
LP
286 <listitem><para>Defines a calendar timer for starting the specified command. See <varname>OnCalendar=</varname>
287 in <citerefentry><refentrytitle>systemd.timer</refentrytitle><manvolnum>5</manvolnum></citerefentry>. This
c04becfa 288 option may not be combined with <option>--scope</option> or <option>--pty</option>.</para>
4c213d6c
WC
289 </listitem>
290 </varlistentry>
291
292 <varlistentry>
293 <term><option>--timer-property=</option></term>
294
014c4c98
LP
295 <listitem><para>Sets a property on the timer unit that is created. This option is similar to
296 <option>--property=</option> but applies to the transient timer unit rather than the transient service unit
297 created. This option only has an effect in conjunction with <option>--on-active=</option>,
298 <option>--on-boot=</option>, <option>--on-startup=</option>, <option>--on-unit-active=</option>,
299 <option>--on-unit-inactive=</option> or <option>--on-calendar=</option>. This option takes an assignment in the
300 same format as <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>'s
4c213d6c
WC
301 <command>set-property</command> command.</para> </listitem>
302 </varlistentry>
303
3d161f99
LP
304 <varlistentry>
305 <term><option>--no-block</option></term>
306
307 <listitem>
014c4c98
LP
308 <para>Do not synchronously wait for the unit start operation to finish. If this option is not specified, the
309 start request for the transient unit will be verified, enqueued and <command>systemd-run</command> will wait
310 until the unit's start-up is completed. By passing this argument, it is only verified and enqueued. This
311 option may not be combined with <option>--wait</option>.</para>
3d161f99
LP
312 </listitem>
313 </varlistentry>
314
014c4c98
LP
315 <varlistentry>
316 <term><option>--wait</option></term>
317
318 <listitem><para>Synchronously wait for the transient service to terminate. If this option is specified, the
319 start request for the transient unit is verified, enqueued, and waited for. Subsequently the invoked unit is
320 monitored, and it is waited until it is deactivated again (most likely because the specified command
321 completed). On exit, terse information about the unit's runtime is shown, including total runtime (as well as
322 CPU usage, if <option>--property=CPUAccounting=1</option> was set) and the exit code and status of the main
323 process. This output may be suppressed with <option>--quiet</option>. This option may not be combined with
324 <option>--no-block</option>, <option>--scope</option> or the various timer options.</para></listitem>
325 </varlistentry>
326
9b15b784
LP
327 <xi:include href="user-system-options.xml" xpointer="user" />
328 <xi:include href="user-system-options.xml" xpointer="system" />
329 <xi:include href="user-system-options.xml" xpointer="host" />
330 <xi:include href="user-system-options.xml" xpointer="machine" />
331
dfdebb1b
ZJS
332 <xi:include href="standard-options.xml" xpointer="help" />
333 <xi:include href="standard-options.xml" xpointer="version" />
f09114bc
ZJS
334 </variablelist>
335
81c7dd89 336 <para>All command line arguments after the first non-option
3f85ef0f 337 argument become part of the command line of the launched
fbce1139 338 process. If a command is run as service unit, its first argument
3803cde4 339 needs to be an absolute binary path.</para>
f09114bc
ZJS
340 </refsect1>
341
342 <refsect1>
343 <title>Exit status</title>
344
345 <para>On success, 0 is returned, a non-zero failure
346 code otherwise.</para>
347 </refsect1>
348
c9d954b2 349 <refsect1>
df31a6c0 350 <title>Examples</title>
c9d954b2 351
4eac7f5c
ZJS
352 <example>
353 <title>Logging environment variables provided by systemd to services</title>
c9d954b2 354
4eac7f5c 355 <programlisting># systemd-run env
f3ea87af 356Running as unit: run-19945.service
c9d954b2
ZJS
357# journalctl -u run-19945.service
358Sep 08 07:37:21 bupkis systemd[1]: Starting /usr/bin/env...
359Sep 08 07:37:21 bupkis systemd[1]: Started /usr/bin/env.
360Sep 08 07:37:21 bupkis env[19948]: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
361Sep 08 07:37:21 bupkis env[19948]: LANG=en_US.UTF-8
9fccdb0f 362Sep 08 07:37:21 bupkis env[19948]: BOOT_IMAGE=/vmlinuz-3.11.0-0.rc5.git6.2.fc20.x86_64</programlisting>
4eac7f5c 363 </example>
df31a6c0 364
4eac7f5c
ZJS
365 <example>
366 <title>Limiting resources available to a command</title>
df31a6c0 367
4eac7f5c 368 <programlisting># systemd-run -p BlockIOWeight=10 updatedb</programlisting>
4c213d6c 369
4eac7f5c
ZJS
370 <para>This command invokes the
371 <citerefentry project='man-pages'><refentrytitle>updatedb</refentrytitle><manvolnum>8</manvolnum></citerefentry>
372 tool, but lowers the block I/O weight for it to 10. See
373 <citerefentry><refentrytitle>systemd.resource-control</refentrytitle><manvolnum>5</manvolnum></citerefentry>
374 for more information on the <varname>BlockIOWeight=</varname>
375 property.</para>
376 </example>
4c213d6c 377
4eac7f5c
ZJS
378 <example>
379 <title>Running commands at a specified time</title>
380
381 <para>The following command will touch a file after 30 seconds.</para>
382
383 <programlisting># date; systemd-run --on-active=30 --timer-property=AccuracySec=100ms /bin/touch /tmp/foo
4c213d6c 384Mon Dec 8 20:44:24 KST 2014
f3ea87af
ILG
385Running as unit: run-71.timer
386Will run service as unit: run-71.service
85fb8031 387# journalctl -b -u run-71.timer
4c213d6c
WC
388-- Logs begin at Fri 2014-12-05 19:09:21 KST, end at Mon 2014-12-08 20:44:54 KST. --
389Dec 08 20:44:38 container systemd[1]: Starting /bin/touch /tmp/foo.
390Dec 08 20:44:38 container systemd[1]: Started /bin/touch /tmp/foo.
85fb8031 391# journalctl -b -u run-71.service
4c213d6c
WC
392-- Logs begin at Fri 2014-12-05 19:09:21 KST, end at Mon 2014-12-08 20:44:54 KST. --
393Dec 08 20:44:48 container systemd[1]: Starting /bin/touch /tmp/foo...
394Dec 08 20:44:48 container systemd[1]: Started /bin/touch /tmp/foo.</programlisting>
4eac7f5c 395 </example>
9b15b784 396
4eac7f5c
ZJS
397 <example>
398 <title>Allowing access to the tty</title>
9b15b784 399
4eac7f5c
ZJS
400 <para>The following command invokes <filename>/bin/bash</filename> as a service
401 passing its standard input, output and error to the calling TTY.</para>
9b15b784 402
4eac7f5c
ZJS
403 <programlisting># systemd-run -t --send-sighup /bin/bash</programlisting>
404 </example>
65eb37f8
ZJS
405
406 <example>
407 <title>Start <command>screen</command> as a user service</title>
408
409 <programlisting>$ systemd-run --scope --user screen
410Running scope as unit run-r14b0047ab6df45bfb45e7786cc839e76.scope.
411
412$ screen -ls
413There is a screen on:
414 492..laptop (Detached)
4151 Socket in /var/run/screen/S-fatima.
416</programlisting>
417
418 <para>This starts the <command>screen</command> process as a child of the
419 <command>systemd --user</command> process that was started by
420 <filename>user@.service</filename>, in a scope unit. A
421 <citerefentry><refentrytitle>systemd.scope</refentrytitle><manvolnum>5</manvolnum></citerefentry>
422 unit is used instead of a
423 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>
424 unit, because <command>screen</command> will exit when detaching from the terminal,
425 and a service unit would be terminated. Running <command>screen</command>
426 as a user unit has the advantage that it is not part of the session scope.
427 If <varname>KillUserProcesses=yes</varname> is configured in
428 <citerefentry><refentrytitle>logind.conf</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
429 the default, the session scope will be terminated when the user logs
430 out of that session.</para>
431
432 <para>The <filename>user@.service</filename> is started automatically
433 when the user first logs in, and stays around as long as at least one
434 login session is open. After the user logs out of the last session,
435 <filename>user@.service</filename> and all services underneath it
2dd67817 436 are terminated. This behavior is the default, when "lingering" is
65eb37f8
ZJS
437 not enabled for that user. Enabling lingering means that
438 <filename>user@.service</filename> is started automatically during
439 boot, even if the user is not logged in, and that the service is
440 not terminated when the user logs out.</para>
441
442 <para>Enabling lingering allows the user to run processes without being logged in,
443 for example to allow <command>screen</command> to persist after the user logs out,
444 even if the session scope is terminated. In the default configuration, users can
445 enable lingering for themselves:</para>
446
447 <programlisting>$ loginctl enable-linger</programlisting>
448 </example>
c9d954b2
ZJS
449 </refsect1>
450
f09114bc
ZJS
451 <refsect1>
452 <title>See Also</title>
453 <para>
454 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
3803cde4 455 <citerefentry><refentrytitle>systemctl</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
f09114bc
ZJS
456 <citerefentry><refentrytitle>systemd.unit</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
457 <citerefentry><refentrytitle>systemd.service</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
458 <citerefentry><refentrytitle>systemd.scope</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
d21ed1ea 459 <citerefentry><refentrytitle>systemd.slice</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
df31a6c0
LP
460 <citerefentry><refentrytitle>systemd.exec</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
461 <citerefentry><refentrytitle>systemd.resource-control</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
4c213d6c 462 <citerefentry><refentrytitle>systemd.timer</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
450442cf 463 <citerefentry><refentrytitle>systemd-mount</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
d21ed1ea 464 <citerefentry><refentrytitle>machinectl</refentrytitle><manvolnum>1</manvolnum></citerefentry>
f09114bc
ZJS
465 </para>
466 </refsect1>
467
468</refentry>