summaryrefslogtreecommitdiff
path: root/docs/_locale/de_DE/LC_MESSAGES/automation
diff options
context:
space:
mode:
Diffstat (limited to 'docs/_locale/de_DE/LC_MESSAGES/automation')
-rw-r--r--docs/_locale/de_DE/LC_MESSAGES/automation/cloud-init.po492
-rw-r--r--docs/_locale/de_DE/LC_MESSAGES/automation/command-scripting.po194
-rw-r--r--docs/_locale/de_DE/LC_MESSAGES/automation/index.po30
-rw-r--r--docs/_locale/de_DE/LC_MESSAGES/automation/vyos-ansible.po56
-rw-r--r--docs/_locale/de_DE/LC_MESSAGES/automation/vyos-api.po167
-rw-r--r--docs/_locale/de_DE/LC_MESSAGES/automation/vyos-napalm.po60
-rw-r--r--docs/_locale/de_DE/LC_MESSAGES/automation/vyos-netmiko.po36
7 files changed, 0 insertions, 1035 deletions
diff --git a/docs/_locale/de_DE/LC_MESSAGES/automation/cloud-init.po b/docs/_locale/de_DE/LC_MESSAGES/automation/cloud-init.po
deleted file mode 100644
index f0b41254..00000000
--- a/docs/_locale/de_DE/LC_MESSAGES/automation/cloud-init.po
+++ /dev/null
@@ -1,492 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2021, VyOS maintainers and contributors
-# This file is distributed under the same license as the VyOS package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: VyOS 1.4\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-10-21 12:01+0200\n"
-"PO-Revision-Date: 2022-10-21 10:05+0000\n"
-"Language-Team: German (Germany) (https://www.transifex.com/vyos/teams/155110/de_DE/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: de_DE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: ../../automation/cloud-init.rst:7 5a1e58e08ed74c5fa7cc0aeccc824ddb
-msgid "VyOS cloud-init"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:9 b57440a9bce34a6eb76d28e83f310660
-msgid ""
-"Cloud and virtualized instances of VyOS are initialized using the industry-"
-"standard cloud-init. Via cloud-init, the system performs tasks such as "
-"injecting SSH keys and configuring the network. In addition, the user can "
-"supply a custom configuration at the time of instance launch."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:16 c7b2cea0881242eba6163a4d117bed1f
-msgid "Config Sources"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:18 7941c60fef0341a5a744caf4634a2b5b
-msgid "VyOS support three types of config sources."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:20 4f51359757f4479eae57bfea31130721
-msgid ""
-"Metadata - Metadata is sourced by the cloud platform or hypervisor. In some "
-"clouds, there is implemented as an HTTP endpoint at "
-"``http://169.254.169.254``."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:24 4d39a74fa33b4d599ec13cc1f5bed499
-msgid ""
-"Network configuration - This config source informs the system about the "
-"network settings like IP addresses, routes, DNS. Available only in several "
-"cloud and virtualization platforms."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:28 f49f055ec7354d9a9ddeba37cafd74f3
-msgid ""
-"User-data - User-data is specified by the user. This config source offers "
-"the ability to insert any CLI configuration commands into the configuration "
-"before the first boot."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:34 c92475e7b9784db89a83843b7355825f
-msgid "User-data"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:36 afb22e05c7614bb887894f6913f59417
-msgid ""
-"Major cloud providers offer a means of providing user-data at the time of "
-"instance launch. It can be provided as plain text or as base64-encoded text,"
-" depending on cloud provider. Also, it can be compressed using gzip, which "
-"makes sense with a long configuration commands list, because of the hard "
-"limit to ~16384 bytes for the whole user-data."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:42 1ade5247a27141fba6ebc4cffca0dbd4
-msgid ""
-"The easiest way to configure the system via user-data is the Cloud-config "
-"syntax described below."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:47 260de9e525f9497294684996454457c9
-msgid "Cloud-config modules"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:49 440c4a2d60674ac783a105eb4e25baca
-msgid "In VyOS, by default, enables only two modules:"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:51 e934c507f557401cadb02574e8ef8343
-msgid ""
-"``write_files`` - this module allows to insert any files into the filesystem"
-" before the first boot, for example, pre-generated encryption keys, "
-"certificates, or even a whole ``config.boot`` file. The format is described "
-"in the cloudinit documentation `Cloud-init-write_files`_."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:55 1cf4edc857344fb693602873fc191d5f
-msgid ""
-"``vyos_userdata`` - the module accepts a list of CLI configuration commands "
-"in a ``vyos_config_commands`` section, which gives an easy way to configure "
-"the system during deployment."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:61 154581d4c6864f9a95196e246f6ef186
-msgid "cloud-config file format"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:63 4c286e38f4ef4732bb47d89e004a30b8
-msgid ""
-"A cloud-config document is written in YAML. The file must begin with "
-"``#cloud-config`` line. The only supported top-level keys are "
-"``vyos_config_commands`` and ``write_files``. The use of these keys is "
-"described in the following two sections."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:71 df934b7aa27d4f61b38aa39a09c223a3
-msgid "Initial Configuration"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:74 073a09a0edfd492f8a660b0c56ed4d38
-msgid ""
-"The key used to designate a VyOS configuration is ``vyos_config_commands``. "
-"What follows is VyOS configuration using the \"set-style\" syntax. Both "
-"\"set\" and \"delete\" commands are supported."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:78 610d037891dc4c29a9cf61de1f97f081
-msgid "Commands requirements:"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:80 0d7a52496c8f433f87e8384f46102b96
-msgid "One command per line."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:81 f5ddeb42c3ca454caacc06f66342ae43
-msgid "If command ends in a value, it must be inside single quotes."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:82 d695ba3d75674b4ebe336d0ba024fe4c
-msgid "A single-quote symbol is not allowed inside command or value."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:84 3b81fae7e5e34921b7d5729c1e1443e2
-msgid ""
-"The commands list produced by the ``show configuration commands`` command on"
-" a VyOS router should comply with all the requirements, so it is easy to get"
-" a proper commands list by copying it from another router."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:88 b66086100a5c4d7e91fe9df3cdba22a0
-msgid ""
-"The configuration specified in the cloud-config document overwrites default "
-"configuration values and values configured via Metadata."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:91 cf8392222e2e4aada3e83cf24a334711
-msgid ""
-"Here is an example cloud-config that appends configuration at the time of "
-"first boot."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:107 7ac4e2c2b13b4bcba5cf96245596895c
-msgid "System Defaults/Fallbacks"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:109 12a9a939ac2e4c9db7db16e5b08344bd
-msgid "These are the VyOS defaults and fallbacks."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:111 bf96658e8ac746a08f667ba36b36c9b0
-msgid "SSH is configured on port 22."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:112 03570fecffce4ac8a69c7fe9adb37914
-msgid "``vyos``/``vyos`` credentials if no others specified by data source."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:113 c8d8dd97c06c4b78ac9caa9b4761649c
-msgid ""
-"DHCP on first Ethernet interface if no network configuration is provided."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:115 2e145b1477e34669bec37bdadc3c8154
-msgid "All of these can be overridden using the configuration in user-data."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:120 845892930f3a4465b390fce4f6fd701f
-msgid "Command Execution at Initial Boot"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:122 4d20c2b6fed844e5997c822112a4f96f
-msgid ""
-"VyOS supports the execution of operational commands and linux commands at "
-"initial boot. This is accomplished using ``write_files`` to certain files in"
-" the /opt/vyatta/etc/config/scripts directory. Commands specified in "
-"opt/vyatta/etc/config/scripts/vyos-preconfig-bootup.script are executed "
-"prior to configuration. The /opt/vyatta/etc/config/scripts/vyos-postconfig-"
-"bootup.script file contains commands to be executed after configuration. In "
-"both cases, commands are executed as the root user."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:131 aae55067a9ac4887a911b230015ec5f9
-msgid ""
-"Note that the /opt/vyatta/etc/config is used instead of the /config/scripts "
-"directory referenced in the :ref:`command-scripting` section of the "
-"documentation because the /config/script directory isn't mounted when the "
-"``write_files`` module executes."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:136 3ad52c113fd44f5f9712b1e3d3fde0a7
-msgid ""
-"The following example shows how to execute commands after the initial "
-"configuration."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:153 b0ea9945f0ff4d1c9cb07531ccb0a081
-msgid ""
-"If you need to gather information from linux commands to configure VyOS, you"
-" can execute commands and then configure VyOS in the same script."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:156 59beca45859f453399c465e3502cd4b3
-msgid ""
-"The following example sets the hostname based on the instance identifier "
-"obtained from the EC2 metadata service."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:178 643d992607ac4362ad1a396e3837065a
-msgid "NoCloud"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:180 f545509ef9fb488e8523799bad5c66a9
-msgid ""
-"Injecting configuration data is not limited to cloud platforms. Users can "
-"employ the NoCloud data source to inject user-data and meta-data on "
-"virtualization platforms such as VMware, Hyper-V and KVM."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:184 2b2d4c6f2d214088b78d1f6ee5f676a8
-msgid ""
-"While other methods exist, the most straightforward method for using the "
-"NoCloud data source is creating a seed ISO and attaching it to the virtual "
-"machine as a CD drive. The volume must be formatted as a vfat or ISO 9660 "
-"file system with the label \"cidata\" or \"CIDATA\"."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:189 dc4845c5e4444218935c1b2262b6731b
-msgid ""
-"Create text files named user-data and meta-data. On linux-based systems, the"
-" mkisofs utility can be used to create the seed ISO. The following syntax "
-"will add these files to the ISO 9660 file system."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:197 1ed8e489b45d4d9a87524b1b4c089cd3
-msgid ""
-"The seed.iso file can be attached to the virtual machine. As an example, the"
-" method with KVM to attach the ISO as a CD drive follows."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:217 7a8f0a5f0bde43f197d6eb89b0cdc29f
-msgid ""
-"For more information on the NoCloud data source, visit its `page "
-"<https://cloudinit.readthedocs.io/en/latest/topics/datasources/nocloud.html>`_"
-" in the cloud-init documentation."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:223 6c50539fd8294145bf4cca4981db28af
-msgid "Troubleshooting"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:225 1608b5a68a754edfa27acafa62057558
-msgid ""
-"If you encounter problems, verify that the cloud-config document contains "
-"valid YAML. Online resources such as https://yamlvalidator.com/ provide a "
-"simple tool for validating YAML."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:229 a3db85f1710145fdbd8c2181d1ada0a4
-msgid ""
-"cloud-init logs to /var/log/cloud-init.log. This file can be helpful in "
-"determining why the configuration varies from what you expect. You can fetch"
-" the most important data filtering output for ``vyos`` keyword:"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:239 60f249a2e8a64bc1a9ab81609926604c
-msgid "Cloud-init on Proxmox"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:241 a94fe08b104d4a45add735d528466212
-msgid ""
-"Before starting, please refer to cloud-init `network-config-docs`_ in order "
-"to know how to import user and network configurations."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:244 f3ad6b56da1048179d4587c5ac5d09e9
-msgid "Most important keys that needs to be considered:"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:246 f89e13c7ddfe4eb1ae24b64b7abe1c73
-msgid "VyOS configuration commands are defined in user-data file."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:248 27a35953378648f1966f05482a9329ef
-msgid "Networking configurations shouldn't be passed in user-data file."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:250 ea015f712bac4a808fa1899062108879
-msgid ""
-"If no networking configuration is provided, then dhcp client is going to be "
-"enabled on first interface. Bare in mind that this configuration will be "
-"inyected at an OS level, so don't expect to find dhcp client configuration "
-"on vyos cli. Because of this behavior, in next example lab we will disable "
-"dhcp-client configuration on eth0."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:256 259dd768212147ef9ad021440aaa4f09
-msgid "Also, this lab considers:"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:258 a85277b4738c471abd72d79b2639b35b
-msgid "Proxmox IP address: **192.168.0.253/24**"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:260 c63831f9ddf14a8db29f00fea590c64c
-msgid ""
-"Storaged used: volume local, which is mounted on directory **/var/lib/vz**, "
-"and contains all type of content, including snippets."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:263 3ed9315ed4f64b328bbf4f2e147340cf
-msgid ""
-"Remove default dhcp client on first interface, and load other configuration "
-"during first boot, using cloud-init."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:268 cf856c6413e34601a093a2239e3df64c
-msgid "Generate qcow image"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:270 894f4769e6324b32a683c0510fcfcd9a
-msgid ""
-"A VyOS qcow image with cloud-init options is needed. This can be obtained "
-"using `vyos-vm-images`_ repo. After clonning the repo, edit the file "
-"**qemu.yml** and comment the **download-iso** role."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:274 df71fe2982564599a5f44ba3a55f9794
-msgid ""
-"In this lab, we are using 1.3.0 VyOS version and setting a disk of 10G. "
-"Download VyOS .iso file and save it as ``/tmp/vyos.iso``. Command used for "
-"generating qcow image:"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:284 3a763bbe4f6e47d4bc74ea16091b0544
-msgid ""
-"File generated with previous command: ``/tmp/vyos-1.3.0-cloud-"
-"init-10G-qemu.qcow2``"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:287 686677d85d264f1aad4df8ef4e3901b6
-msgid "Now, that file needs to be copied to proxmox server:"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:296 d0a265be824942f3bf27e86483b22443
-msgid "Prepare cloud-init files"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:298 16b77d3ee3804a148c8809bde254fc67
-msgid "In Proxmox server three files are going to be used for this setup:"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:300 3cff48ac8ac246aa9e69c66df565560c
-msgid ""
-"**network-config**: file that will indicate to avoid dhcp client on first "
-"interface."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:303 ff9c9021dbf64b50809bb79aade0a92b
-msgid "**user-data**: includes vyos-commands."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:305 f7b8139b2dc74420ab638a7c84859d6f
-msgid "**meta-data**: empty file (required)."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:307 2f5769aa6f34455c89561c148233c3c6
-msgid ""
-"In this lab, all files are located in ``/tmp/``. So, before going on, lets "
-"move to that directory:"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:314 0287930f880d41d3adbc9d8fe5b6df1a
-msgid ""
-"**user-data** file must start with ``#cloud-config`` and contains vyos-"
-"commands. For example:"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:333 b90181ca013447bab6244341bdc266ea
-msgid ""
-"**network-config** file only has configuration that disables the automatic "
-"dhcp client on first interface."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:337 1db23d5d94754a2ab1081e30d3fe0da5
-msgid "Content of network-config file:"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:347 877a675380044cd586ebb0e05e4c531b
-msgid "Finaly, file **meta-data** has no content, but it's required."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:351 8864c9d6648a40ac8dd41157ba845afb
-msgid "Create seed.iso"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:353 1adab209dbb2495f83f9808c51ac9749
-msgid ""
-"Once the three files were created, it's time to generate the ``seed.iso`` "
-"image, which needs to be mounted to the new VM as a cd."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:356 d41701cb8aa3407e86af0b16966aea6c
-msgid "Command for generating ``seed.iso``"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:363 46c3c877315148b3accab6ededd0c84c
-msgid ""
-"**NOTE**: be carefull while copying and pasting previous commands. Doble "
-"quotes may need to be corrected."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:368 863a7a3b62c64d1cbdad92442a0386c5
-msgid "Creating the VM"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:370 3cdde5f24eb24df1907c63206757c453
-msgid ""
-"Notes for this particular example, that may need to be modified in other "
-"setups:"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:373 f1e258960ed34b2aa3b5ee9a663162ca
-msgid "VM ID: in this example, VM ID used is 555."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:375 5ff861cc0d1c44be86c4bd9f67b4aff7
-msgid "VM Storage: ``local`` volume is used."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:377 60f1e819fadc486bbebfb084047c88cb
-msgid ""
-"ISO files storage: ``local`` volume is used for ``.iso`` file storage. In "
-"this scenario ``local`` volume type is set to **directory**, abd attached to"
-" ``/var/lib/vz``."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:381 11865be2e655411d870bea8c7e9b8acb
-msgid "VM Resources: these parameters can be modified as needed."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:383 091d1eb812234a78a136ead5906ecdbf
-msgid ""
-"``seed.iso`` was previously created in directory ``/tmp/``. It's necessary "
-"to move it to ``/var/lib/vz/template/iso``"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:390 f22c998b66c04304b73fc1dcdabc7ec0
-msgid "On proxmox server:"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:409 3c984167cf6b4083ba0310a3e8d0075f
-msgid "Power on VM and verifications"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:411 182c863cbaaf422493b001eadc5b13a5
-msgid "From cli or GUI, power on VM, and after it boots, verify configuration"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:416 df2b02863d1847d386567809945976c9
-msgid "References"
-msgstr ""
-
-#: ../../automation/cloud-init.rst:418 f9149026e8564f5aa658f00087d0c282
-msgid "VyOS `cloud-init-docs`_."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:420 9a146991908c4a6e8371986ba2e4d0c6
-msgid "Cloud-init `network-config-docs`_."
-msgstr ""
-
-#: ../../automation/cloud-init.rst:422 32c72da7713245e293b1a7d0d4547827
-msgid "Proxmox `Cloud-init-Support`_."
-msgstr ""
diff --git a/docs/_locale/de_DE/LC_MESSAGES/automation/command-scripting.po b/docs/_locale/de_DE/LC_MESSAGES/automation/command-scripting.po
deleted file mode 100644
index 7ec34bd8..00000000
--- a/docs/_locale/de_DE/LC_MESSAGES/automation/command-scripting.po
+++ /dev/null
@@ -1,194 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2021, VyOS maintainers and contributors
-# This file is distributed under the same license as the VyOS package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: VyOS 1.4\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-10-21 12:01+0200\n"
-"PO-Revision-Date: 2022-10-21 10:05+0000\n"
-"Language-Team: German (Germany) (https://www.transifex.com/vyos/teams/155110/de_DE/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: de_DE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: ../../automation/command-scripting.rst:6 2c8c2f645849459f89dc1a54980764dc
-msgid "Command Scripting"
-msgstr ""
-
-#: ../../automation/command-scripting.rst:8 a81211b38eec4d71870e462e6651c57f
-msgid ""
-"VyOS supports executing configuration and operational commands non-"
-"interactively from shell scripts."
-msgstr ""
-
-#: ../../automation/command-scripting.rst:11 4cc198a3f7d24c02a154413cabfbcafb
-msgid ""
-"To include VyOS specific functions and aliases you need to ``source "
-"/opt/vyatta/etc/functions/script-template`` files at the top of your script."
-msgstr ""
-
-#: ../../automation/command-scripting.rst:21 195e544d2ec04affbf7cb5f96643fc40
-msgid "Run configuration commands"
-msgstr ""
-
-#: ../../automation/command-scripting.rst:23 17f56fe10e0142e89dae23bf4372c53b
-msgid ""
-"Configuration commands are executed just like from a normal config session. "
-"For example, if you want to disable a BGP peer on VRRP transition to backup:"
-msgstr ""
-
-#: ../../automation/command-scripting.rst:37 be8951ac72144fdf9b0ae534c7040f51
-msgid "Run operational commands"
-msgstr ""
-
-#: ../../automation/command-scripting.rst:39 8c78190b1a15458d9a5f0b0327b58972
-msgid ""
-"Unlike a normal configuration session, all operational commands must be "
-"prepended with ``run``, even if you haven't created a session with "
-"configure."
-msgstr ""
-
-#: ../../automation/command-scripting.rst:50 baf374a95fce4d9a81e78b279342a2ed
-msgid "Run commands remotely"
-msgstr ""
-
-#: ../../automation/command-scripting.rst:52 421af86bb192480ba3dad43c93bd835d
-msgid ""
-"Sometimes you simply wan't to execute a bunch of op-mode commands via SSH on"
-" a remote VyOS system."
-msgstr ""
-
-#: ../../automation/command-scripting.rst:63 db1bcedc53ff4ba8adc0f6efcbc8c6af
-msgid "Will return:"
-msgstr ""
-
-#: ../../automation/command-scripting.rst:77 cbbe6f88dc8d4e009c1e44918d8be89f
-msgid "Other script languages"
-msgstr ""
-
-#: ../../automation/command-scripting.rst:79 46162a174314441ab91c18aa9aaa1323
-msgid ""
-"If you want to script the configs in a language other than bash you can have"
-" your script output commands and then source them in a bash script."
-msgstr ""
-
-#: ../../automation/command-scripting.rst:82 e579b800945a42238f353a642e0a70bc
-msgid "Here is a simple example:"
-msgstr ""
-
-#: ../../automation/command-scripting.rst:102 371f68a335124cc3b41c936e6427fefb
-msgid "Executing Configuration Scripts"
-msgstr ""
-
-#: ../../automation/command-scripting.rst:104 df683ee968244371935d1e5f54381ffc
-msgid ""
-"There is a pitfall when working with configuration scripts. It is tempting "
-"to call configuration scripts with \"sudo\" (i.e., temporary root "
-"permissions), because that's the common way on most Linux platforms to call "
-"system commands."
-msgstr ""
-
-#: ../../automation/command-scripting.rst:108 59f9aad0a42b43fa828f5a80c6dc4b5b
-msgid ""
-"On VyOS this will cause the following problem: After modifying the "
-"configuration via script like this once, it is not possible to manually "
-"modify the config anymore:"
-msgstr ""
-
-#: ../../automation/command-scripting.rst:118 a053834b07a44621845caaa7ea29cec7
-msgid ""
-"This will result in the following error message: ``Set failed`` If this "
-"happens, a reboot is required to be able to edit the config manually again."
-msgstr ""
-
-#: ../../automation/command-scripting.rst:121 9a5ca8218e28475181b872ae7951f075
-msgid ""
-"To avoid these problems, the proper way is to call a script with the "
-"``vyattacfg`` group, e.g., by using the ``sg`` (switch group) command:"
-msgstr ""
-
-#: ../../automation/command-scripting.rst:128 b1877ee52bd24e759b2d42164c56fc63
-msgid ""
-"To make sure that a script is not accidentally called without the "
-"``vyattacfg`` group, the script can be safeguarded like this:"
-msgstr ""
-
-#: ../../automation/command-scripting.rst:138 a73d2d5ad41b4aaca7b8c46e8978f080
-msgid "Executing pre-hooks/post-hooks Scripts"
-msgstr ""
-
-#: ../../automation/command-scripting.rst:140 4b63288775e14ec79d7070908fb6507c
-msgid ""
-"VyOS has the ability to run custom scripts before and after each commit"
-msgstr ""
-
-#: ../../automation/command-scripting.rst:142 df1cc1dea2984ac18439061fcc497f7e
-msgid ""
-"The default directories where your custom Scripts should be located are:"
-msgstr ""
-
-#: ../../automation/command-scripting.rst:152 512a1b7409f149c09140fe2a7028b912
-msgid ""
-"Scripts are run in alphabetical order. Their names must consist entirely of "
-"ASCII upper- and lower-case letters,ASCII digits, ASCII underscores, and "
-"ASCII minus-hyphens.No other characters are allowed."
-msgstr ""
-
-#: ../../automation/command-scripting.rst:156 61e8706e6133433ebf34b6131240b637
-msgid ""
-"Custom scripts are not executed with root privileges (Use sudo inside if "
-"this is necessary)."
-msgstr ""
-
-#: ../../automation/command-scripting.rst:159 a9ffdbf67dd040bbbccabfc967a01f44
-msgid ""
-"A simple example is shown below, where the ops command executed in the post-"
-"hook script is \"show interfaces\"."
-msgstr ""
-
-#: ../../automation/command-scripting.rst:176 364370e38f4e42fbad4a02dc26aadf6b
-msgid "Preconfig on boot"
-msgstr ""
-
-#: ../../automation/command-scripting.rst:178 3015d098134f40f79b42c6cf31397430
-msgid ""
-"The ``/config/scripts/vyos-preconfig-bootup.script`` script is called on "
-"boot before the VyOS configuration during boot process."
-msgstr ""
-
-#: ../../automation/command-scripting.rst:181
-#: ../../automation/command-scripting.rst:200 d6777b5c6e784829a7bcb980465f44d6
-#: fd486e82744a4d9ab8d582376a99fe51
-msgid ""
-"Any modifications were done to work around unfixed bugs and implement "
-"enhancements that are not complete in the VyOS system can be placed here."
-msgstr ""
-
-#: ../../automation/command-scripting.rst:184
-#: ../../automation/command-scripting.rst:203 01578e1114e148bc8c4e57f22fac02b0
-#: 3afb2a6b8ef049fba0b5ee464db29e6d
-msgid "The default file looks like this:"
-msgstr ""
-
-#: ../../automation/command-scripting.rst:195 4122b5cd64b5428b9cea053dd25af3c0
-msgid "Postconfig on boot"
-msgstr ""
-
-#: ../../automation/command-scripting.rst:197 8b08494bbe6340c4bc24143ae5fb4f35
-msgid ""
-"The ``/config/scripts/vyos-postconfig-bootup.script`` script is called on "
-"boot after the VyOS configuration is fully applied."
-msgstr ""
-
-#: ../../automation/command-scripting.rst:212 e7f470d251e24d66affcfc9374388278
-msgid ""
-"For configuration/upgrade management issues, modification of this script "
-"should be the last option. Always try to find solutions based on CLI "
-"commands first."
-msgstr ""
diff --git a/docs/_locale/de_DE/LC_MESSAGES/automation/index.po b/docs/_locale/de_DE/LC_MESSAGES/automation/index.po
deleted file mode 100644
index 37f2d1bc..00000000
--- a/docs/_locale/de_DE/LC_MESSAGES/automation/index.po
+++ /dev/null
@@ -1,30 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2021, VyOS maintainers and contributors
-# This file is distributed under the same license as the VyOS package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: VyOS 1.4\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-10-21 12:01+0200\n"
-"PO-Revision-Date: 2022-10-21 10:05+0000\n"
-"Language-Team: German (Germany) (https://www.transifex.com/vyos/teams/155110/de_DE/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: de_DE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: ../../automation/index.rst:3 3901e58b6a9e4771bc4fdac1f10d707a
-msgid "VyOS Automation"
-msgstr ""
-
-#: ../../automation/index.rst:6 47c60c158f06404d97222b5b68773229
-msgid "Saltstack"
-msgstr ""
-
-#: ../../automation/index.rst:7 9b93b4dad8db45c1a4d99186ab441d51
-msgid "startup scripts"
-msgstr ""
diff --git a/docs/_locale/de_DE/LC_MESSAGES/automation/vyos-ansible.po b/docs/_locale/de_DE/LC_MESSAGES/automation/vyos-ansible.po
deleted file mode 100644
index fea3d6c0..00000000
--- a/docs/_locale/de_DE/LC_MESSAGES/automation/vyos-ansible.po
+++ /dev/null
@@ -1,56 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2021, VyOS maintainers and contributors
-# This file is distributed under the same license as the VyOS package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: VyOS 1.4\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-10-21 12:01+0200\n"
-"PO-Revision-Date: 2022-10-21 10:05+0000\n"
-"Language-Team: German (Germany) (https://www.transifex.com/vyos/teams/155110/de_DE/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: de_DE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: ../../automation/vyos-ansible.rst:6 e405b3cd16fd4277a3b245e98f939389
-msgid "Ansible"
-msgstr ""
-
-#: ../../automation/vyos-ansible.rst:8 d20f4882f8ed42c48545b9e08440d24c
-msgid ""
-"VyOS supports configuration via ansible. Need to install ``ansible`` and "
-"``python3-paramiko`` module"
-msgstr ""
-
-#: ../../automation/vyos-ansible.rst:11 b256da61f8fb417e857e02cd654d1a53
-msgid "Structure of files"
-msgstr ""
-
-#: ../../automation/vyos-ansible.rst:24 fe2d6a59800142aa8f7d7089c5903489
-msgid "File contents"
-msgstr ""
-
-#: ../../automation/vyos-ansible.rst:26 b6825e1462764e35ac127d1305adc30e
-msgid "ansible.cfg"
-msgstr ""
-
-#: ../../automation/vyos-ansible.rst:35 dd37dc1fca7042b7a42de60899de039c
-msgid "id_rsa_docker.pub. Needs to declare only public key exactly."
-msgstr ""
-
-#: ../../automation/vyos-ansible.rst:42 244ef3fa45a64870b4c2f93f34f93297
-msgid "hosts"
-msgstr ""
-
-#: ../../automation/vyos-ansible.rst:56 8dcbd822cb6641b8924558f1f81e4076
-msgid "main.yml"
-msgstr ""
-
-#: ../../automation/vyos-ansible.rst:80 592908ab475948ca9d6640d236f6918c
-msgid "Run ansible"
-msgstr ""
diff --git a/docs/_locale/de_DE/LC_MESSAGES/automation/vyos-api.po b/docs/_locale/de_DE/LC_MESSAGES/automation/vyos-api.po
deleted file mode 100644
index b9f86bb9..00000000
--- a/docs/_locale/de_DE/LC_MESSAGES/automation/vyos-api.po
+++ /dev/null
@@ -1,167 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2021, VyOS maintainers and contributors
-# This file is distributed under the same license as the VyOS package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: VyOS 1.4\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-10-21 12:01+0200\n"
-"PO-Revision-Date: 2022-10-21 10:05+0000\n"
-"Language-Team: German (Germany) (https://www.transifex.com/vyos/teams/155110/de_DE/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: de_DE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: ../../automation/vyos-api.rst:7 07d92ac230e84acd850c6c56f9238a08
-msgid "VyOS API"
-msgstr ""
-
-#: ../../automation/vyos-api.rst:9 ec3a654fc40a41509c6320d64796822b
-msgid "For configuration and enabling the API see :ref:`http-api`"
-msgstr ""
-
-#: ../../automation/vyos-api.rst:13 13d0f2086690496290e1666ed1ac14df
-msgid "Authentication"
-msgstr ""
-
-#: ../../automation/vyos-api.rst:15 25d9abb447b84093a6cba32829e95073
-msgid ""
-"All endpoints only listen on HTTP POST requests and the API KEY must set as "
-"``key`` in the formdata."
-msgstr ""
-
-#: ../../automation/vyos-api.rst:18 b15a5df54b174996a0f356f56895799c
-msgid ""
-"Below see one example for curl and one for python. The rest of the "
-"documentation is reduced to curl."
-msgstr ""
-
-#: ../../automation/vyos-api.rst:41 252ce6bc7e2245349d8f0883011edd9b
-msgid "API Endpoints"
-msgstr ""
-
-#: ../../automation/vyos-api.rst:44 3f35b10b1bdb4a729e744a243862c8e9
-msgid "/retrieve"
-msgstr ""
-
-#: ../../automation/vyos-api.rst:46 22ecac4116354d649e383c4dbb67002a
-msgid ""
-"With the ``retrieve`` endpoint you get parts or the whole configuration."
-msgstr ""
-
-#: ../../automation/vyos-api.rst:48 6a45d66826544acb962f4b1f2948fcb0
-msgid ""
-"To get the whole configuration, pass an empty list to the ``path`` field"
-msgstr ""
-
-#: ../../automation/vyos-api.rst:79 06b5968f35ca40faabf6f34fd38ac531
-msgid ""
-"To only get a part of the configuration, for example ``system syslog``."
-msgstr ""
-
-#: ../../automation/vyos-api.rst:106 5cf33fb0621d4263b8da22d1b15c168f
-msgid ""
-"if you just want the Value of a multi-valued node, use the ``returnValues`` "
-"operation."
-msgstr ""
-
-#: ../../automation/vyos-api.rst:109 3e3c810c9d35481191225d8204240e18
-msgid "For example, get the addresses of a ``dum0`` interface."
-msgstr ""
-
-#: ../../automation/vyos-api.rst:129 32e76c75c60747ea90fc1da23ed22a21
-msgid "/reset"
-msgstr ""
-
-#: ../../automation/vyos-api.rst:131 04506f0762a74afe90a49f3749da11a7
-msgid "The ``reset`` endpoint run a ``reset`` command."
-msgstr ""
-
-#: ../../automation/vyos-api.rst:147 03e6e381062541a28f40487ac95d93d6
-msgid "/image"
-msgstr ""
-
-#: ../../automation/vyos-api.rst:149 f066c84e0a4e448e84abc7f7594f47df
-msgid "To add or delete an image, use the ``/image`` endpoint."
-msgstr ""
-
-#: ../../automation/vyos-api.rst:151 b3446c29406246fb91eb70ec5e18e792
-msgid "add an image"
-msgstr ""
-
-#: ../../automation/vyos-api.rst:168 fd06f368fea143e69379753c9718a5c4
-msgid "delete an image, for example ``1.3-rolling-202006070117``"
-msgstr ""
-
-#: ../../automation/vyos-api.rst:185 7ef7094b6f624238a5c5eaf1be0666d4
-msgid "/show"
-msgstr ""
-
-#: ../../automation/vyos-api.rst:187 9f1cdf71940045788be283501f2d710b
-msgid "The ``/show`` endpoint is to show everything in the operational mode."
-msgstr ""
-
-#: ../../automation/vyos-api.rst:189 35c82a691c0a43e68967e89023d43839
-msgid "For example, show which images are installed."
-msgstr ""
-
-#: ../../automation/vyos-api.rst:209 8bd2484508c84078837601953b36655e
-msgid "/generate"
-msgstr ""
-
-#: ../../automation/vyos-api.rst:211 ad32f841945e4ae0bf0c6020efedb644
-msgid "The ``generate`` endpoint run a ``generate`` command."
-msgstr ""
-
-#: ../../automation/vyos-api.rst:228 33f32365e11745ad8e267a8b323deb3a
-msgid "/configure"
-msgstr ""
-
-#: ../../automation/vyos-api.rst:230 be11836154a94618814cecb82ef8bf86
-msgid ""
-"You can pass a ``set``, ``delete`` or ``comment`` command to the "
-"``/configure`` endpoint."
-msgstr ""
-
-#: ../../automation/vyos-api.rst:233 3fa4011df5394a10b66f8efa6c2f7f18
-msgid "``set`` a single command"
-msgstr ""
-
-#: ../../automation/vyos-api.rst:249 d0fd1e24ed8944b3b0681e9ded9fee28
-msgid "``delete`` a single command"
-msgstr ""
-
-#: ../../automation/vyos-api.rst:264 db6fe5f1b1ae4d72b7e9be759134c062
-msgid ""
-"The API pushes every request to a session and commit it. But some of VyOS "
-"components like DHCP and PPPoE Servers, IPSec, VXLAN, and other tunnels "
-"require full configuration for commit. The endpoint will process multiple "
-"commands when you pass them as a list to the ``data`` field."
-msgstr ""
-
-#: ../../automation/vyos-api.rst:285 f0c2175c25fc43a98e4c157e4dd81c41
-msgid "/config-file"
-msgstr ""
-
-#: ../../automation/vyos-api.rst:287 8c74b78f0845409aad565b935aa9fcd4
-msgid "The endpoint ``/config-file`` is to save or load a configuration."
-msgstr ""
-
-#: ../../automation/vyos-api.rst:289 98a84ef55d9b46eda653b57c973106b6
-msgid ""
-"Save a running configuration to the startup configuration. When you don't "
-"specify the file when saving, it saves to ``/config/config.boot``."
-msgstr ""
-
-#: ../../automation/vyos-api.rst:307 320e97c17b5a4bc5831e2bc06d60e11e
-msgid "Save a running configuration to a file."
-msgstr ""
-
-#: ../../automation/vyos-api.rst:323 482efdddbacf4305934ee05a988c3d4c
-msgid "To Load a configuration file."
-msgstr ""
diff --git a/docs/_locale/de_DE/LC_MESSAGES/automation/vyos-napalm.po b/docs/_locale/de_DE/LC_MESSAGES/automation/vyos-napalm.po
deleted file mode 100644
index dfcf1e2e..00000000
--- a/docs/_locale/de_DE/LC_MESSAGES/automation/vyos-napalm.po
+++ /dev/null
@@ -1,60 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2021, VyOS maintainers and contributors
-# This file is distributed under the same license as the VyOS package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: VyOS 1.4\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-10-21 12:01+0200\n"
-"PO-Revision-Date: 2022-10-21 10:05+0000\n"
-"Language-Team: German (Germany) (https://www.transifex.com/vyos/teams/155110/de_DE/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: de_DE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: ../../automation/vyos-napalm.rst:6 a458dac8c8414b63b48d2d702f96b7d0
-msgid "Napalm"
-msgstr ""
-
-#: ../../automation/vyos-napalm.rst:8 e192c0db73584de984c9316e63ee6b5d
-msgid ""
-"VyOS supports some napalm_ functions for configuration and op-mode. It "
-"requires more tests."
-msgstr ""
-
-#: ../../automation/vyos-napalm.rst:11 380f8923978046bd999342f858bd3d73
-msgid "Install ``napalm-vyos`` module"
-msgstr ""
-
-#: ../../automation/vyos-napalm.rst:21 1188d17bc22a4b94b26a42f5000971c2
-msgid "Op-mode"
-msgstr ""
-
-#: ../../automation/vyos-napalm.rst:48 e46e17b55de8404198ffce64badd6d2e
-msgid "Output op-mode"
-msgstr ""
-
-#: ../../automation/vyos-napalm.rst:85 4b9386b23f6a4cb097a1a15d688d27b5
-msgid "Configuration"
-msgstr ""
-
-#: ../../automation/vyos-napalm.rst:87 b74837137fea4fce960c3eea4a2a5c73
-msgid "We need 2 files, commands.conf and script itself."
-msgstr ""
-
-#: ../../automation/vyos-napalm.rst:89 bf55d87890744b2996a8bc0f1b3757cc
-msgid "Content of commands.conf"
-msgstr ""
-
-#: ../../automation/vyos-napalm.rst:99 1f1b6521bb624b9393a916124d54d9e1
-msgid "Script vyos-napalm.py"
-msgstr ""
-
-#: ../../automation/vyos-napalm.rst:129 63b5c22d2a674e0cbd6211a2cf5ddce6
-msgid "Output"
-msgstr ""
diff --git a/docs/_locale/de_DE/LC_MESSAGES/automation/vyos-netmiko.po b/docs/_locale/de_DE/LC_MESSAGES/automation/vyos-netmiko.po
deleted file mode 100644
index a67f5aaa..00000000
--- a/docs/_locale/de_DE/LC_MESSAGES/automation/vyos-netmiko.po
+++ /dev/null
@@ -1,36 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2021, VyOS maintainers and contributors
-# This file is distributed under the same license as the VyOS package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: VyOS 1.4\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-10-21 12:01+0200\n"
-"PO-Revision-Date: 2022-10-21 10:05+0000\n"
-"Language-Team: German (Germany) (https://www.transifex.com/vyos/teams/155110/de_DE/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: de_DE\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: ../../automation/vyos-netmiko.rst:6 1e1871eb1060440dba0e768d6b404310
-msgid "Netmiko"
-msgstr ""
-
-#: ../../automation/vyos-netmiko.rst:8 6ecaf43a6559480484b28c5cf9b91652
-msgid ""
-"VyOS supports configuration via netmiko_. It requires to install "
-"``python3-netmiko`` module."
-msgstr ""
-
-#: ../../automation/vyos-netmiko.rst:12 fd4e8a489d28462dbcb0fded5000da1a
-msgid "Example"
-msgstr ""
-
-#: ../../automation/vyos-netmiko.rst:47 7741fe48ac53415bb39935b122505e2d
-msgid "Output"
-msgstr ""