diff options
Diffstat (limited to '')
-rw-r--r-- | templates/man8/systemd-run-generator.8.pot | 178 |
1 files changed, 178 insertions, 0 deletions
diff --git a/templates/man8/systemd-run-generator.8.pot b/templates/man8/systemd-run-generator.8.pot new file mode 100644 index 00000000..7bb6f193 --- /dev/null +++ b/templates/man8/systemd-run-generator.8.pot @@ -0,0 +1,178 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2024-03-01 17:11+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: TH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "SYSTEMD-RUN-GENERATOR" +msgstr "" + +#. type: TH +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#, no-wrap +msgid "systemd 255" +msgstr "" + +#. type: TH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "systemd-run-generator" +msgstr "" + +#. ----------------------------------------------------------------- +#. * MAIN CONTENT STARTS HERE * +#. ----------------------------------------------------------------- +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"systemd-run-generator - Generator for invoking commands specified on the " +"kernel command line as system service" +msgstr "" + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: Plain text +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-leap-15-6 opensuse-tumbleweed +msgid "/usr/lib/systemd/system-generators/systemd-run-generator" +msgstr "" + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"systemd-run-generator is a generator that reads the kernel command line and " +"understands three options:" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"If the B<systemd\\&.run=> option is specified and followed by a command " +"line, a unit named kernel-command-line\\&.service is generated for it and " +"booted into\\&. The service has I<Type=oneshot> set, and has " +"I<SuccessAction=exit> and I<FailureAction=exit> configured by default, thus " +"ensuring that the system is shut down as soon as the command completes\\&. " +"The exit status of the command line is propagated to the invoking container " +"manager, if this applies (which might propagate this further, to the calling " +"shell \\(em e\\&.g\\&. B<systemd-nspawn>(7) does this)\\&. If this option " +"is used multiple times the unit file will contain multiple I<ExecStart=> " +"lines, to execute all commands in order\\&. The command is started as " +"regular service, i\\&.e\\&. with I<DefaultDependencies=> on\\&." +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Use B<systemd\\&.run_success_action=> and B<systemd\\&.run_failure_action=> " +"to tweak how to react to the process completing\\&. In particular assigning " +"\"none\" will leave the system running after the command completes\\&. For " +"further details on supported arguments, see B<systemd.unit>(5)\\&." +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "systemd-run-generator implements B<systemd.generator>(7)\\&." +msgstr "" + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "EXAMPLE" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Use a command like the following to add a user to the user database inside a " +"container run with B<systemd-nspawn>(7):" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "# systemd-nspawn -D mycontainer -b systemd\\&.run=\\*(Aq\"adduser test\"\\*(Aq\n" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"(Note the requirement for double quoting in the command line above\\&. The " +"first level of quoting (\\*(Aq\\*(Aq) is processed and removed by the " +"command shell used to invoke B<systemd-nspawn>\\&. The second level of " +"quoting (\"\") is propagated to the kernel command line of the container and " +"processed and removed by B<systemd-run-generator>\\&. Both together make " +"sure both words of the specified command line B<adduser test> end up in the " +"generated unit file together and are neither split apart by the command " +"shell nor by the generator\\&.)" +msgstr "" + +#. type: SH +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"B<systemd>(1), B<systemctl>(1), B<kernel-command-line>(7), B<systemd-" +"nspawn>(7), B<systemd.unit>(5), B<systemd.service>(5)" +msgstr "" + +#. type: TH +#: debian-bookworm opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "systemd 254" +msgstr "" + +#. type: Plain text +#: debian-bookworm +msgid "/lib/systemd/system-generators/systemd-run-generator" +msgstr "" |