summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-02-04 11:18:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-02-04 11:26:25 +0000
commit511396003bea84b9ca8d845cf8ce12ac0aeed8f2 (patch)
tree5e2211e7a46c4109b09b016e0055362bc3de8ad9
parentReleasing debian version 20221223-1. (diff)
downloadopen-infrastructure-compute-tools-511396003bea84b9ca8d845cf8ce12ac0aeed8f2.tar.xz
open-infrastructure-compute-tools-511396003bea84b9ca8d845cf8ce12ac0aeed8f2.zip
Renaming container-tools to compute-tools to avoid future NEW processing when adding kvm backend.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r--debian/control24
-rw-r--r--debian/open-infrastructure-compute-tools.NEWS (renamed from debian/open-infrastructure-container-tools.NEWS)0
-rw-r--r--debian/open-infrastructure-compute-tools.alternatives (renamed from debian/open-infrastructure-container-tools.alternatives)0
-rw-r--r--debian/open-infrastructure-compute-tools.config64
-rwxr-xr-xdebian/open-infrastructure-compute-tools.postinst (renamed from debian/open-infrastructure-container-tools.postinst)18
-rwxr-xr-xdebian/open-infrastructure-compute-tools.postrm (renamed from debian/open-infrastructure-container-tools.postrm)0
-rw-r--r--debian/open-infrastructure-compute-tools.templates (renamed from debian/open-infrastructure-container-tools.templates)22
-rw-r--r--debian/open-infrastructure-container-tools.config64
-rw-r--r--debian/po/POTFILES.in2
-rw-r--r--debian/po/de.po68
-rw-r--r--debian/po/es.po68
-rw-r--r--debian/po/fr.po70
-rw-r--r--debian/po/nl.po68
-rw-r--r--debian/po/pt.po70
-rw-r--r--debian/po/pt_BR.po70
-rw-r--r--debian/po/ru.po70
-rw-r--r--debian/po/templates.pot62
-rwxr-xr-xdebian/rules2
18 files changed, 379 insertions, 363 deletions
diff --git a/debian/control b/debian/control
index 3e1d376..9571879 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ Homepage: https://open-infrastructure.net/software/compute-tools
Vcs-Browser: https://git.progress-linux.org/users/daniel.baumann/debian/packages/open-infrastructure-compute-tools
Vcs-Git: https://git.progress-linux.org/users/daniel.baumann/debian/packages/open-infrastructure-compute-tools
-Package: open-infrastructure-container-tools
+Package: open-infrastructure-compute-tools
Section: admin
Architecture: all
Depends:
@@ -31,8 +31,10 @@ Suggests:
irker,
plzip,
python3-nwdiag | python-nwdiag,
-Provides:
- container-tools,
+Breaks:
+ open-infrastructure-container-tools (<< 20221223-2~),
+Replaces:
+ open-infrastructure-container-tools,
Enhances:
systemd-container,
Description: manage systemd-nspawn containers
@@ -40,5 +42,19 @@ Description: manage systemd-nspawn containers
running multiple isolated Linux systems (containers) on a single Linux control
host.
.
- container-tools provides the system integration for managing containers using
+ compute-tools provides the system integration for managing containers using
systemd-nspawn.
+
+Package: open-infrastructure-container-tools
+Section: oldlibs
+Priority: extra
+Architecture: all
+Depends:
+ open-infrastructure-compute-tools,
+ ${misc:Depends},
+Description: manage systemd-nspawn containers (transitional package)
+ Package to ease upgrading from older open-infrastructure-container-tools package
+ to the new open-infrastructure-compute-tools package.
+ .
+ This package can be purged at anytime once the open-infrastructure-compute-tools
+ package has been installed.
diff --git a/debian/open-infrastructure-container-tools.NEWS b/debian/open-infrastructure-compute-tools.NEWS
index 7927358..7927358 100644
--- a/debian/open-infrastructure-container-tools.NEWS
+++ b/debian/open-infrastructure-compute-tools.NEWS
diff --git a/debian/open-infrastructure-container-tools.alternatives b/debian/open-infrastructure-compute-tools.alternatives
index 5d657ca..5d657ca 100644
--- a/debian/open-infrastructure-container-tools.alternatives
+++ b/debian/open-infrastructure-compute-tools.alternatives
diff --git a/debian/open-infrastructure-compute-tools.config b/debian/open-infrastructure-compute-tools.config
new file mode 100644
index 0000000..8771606
--- /dev/null
+++ b/debian/open-infrastructure-compute-tools.config
@@ -0,0 +1,64 @@
+#!/bin/sh
+
+set -e
+
+CONFFILES="/etc/compute-tools/container.conf /etc/compute-tools/container.conf.d/*.conf"
+
+. /usr/share/debconf/confmodule
+
+db_settitle open-infrastructure-compute-tools/title
+db_input low open-infrastructure-compute-tools/machines-directory || true
+db_go
+
+db_settitle open-infrastructure-compute-tools/title
+db_input low open-infrastructure-compute-tools/config-directory || true
+db_go
+
+db_settitle open-infrastructure-compute-tools/title
+db_input low open-infrastructure-compute-tools/debconf-directory || true
+db_go
+
+db_settitle open-infrastructure-compute-tools/title
+db_input low open-infrastructure-compute-tools/hooks-directory || true
+db_go
+
+db_settitle open-infrastructure-compute-tools/title
+db_input low open-infrastructure-compute-tools/keys-directory || true
+db_go
+
+db_settitle open-infrastructure-compute-tools/title
+db_input low open-infrastructure-compute-tools/cache-directory || true
+db_go
+
+db_settitle open-infrastructure-compute-tools/title
+db_input low open-infrastructure-compute-tools/directory-permissions || true
+db_go
+
+if [ -e /usr/share/compute-tools/build-scripts ]
+then
+ SCRIPT_CHOICES="$(cd /usr/share/compute-tools/build-scripts && find -maxdepth 1 -not -type d -and -not -name 'default' -and -not -name 'debconf' -and -not -name '*.d' -printf '%P\n' | sort)"
+ db_subst open-infrastructure-compute-tools/build-script SCRIPT_CHOICES "$(echo ${SCRIPT_CHOICES} | sed -e 's| |, |g')"
+
+ db_settitle open-infrastructure-compute-tools/title
+ db_input low open-infrastructure-compute-tools/build-script || true
+ db_go
+fi
+
+for CONFFILE in ${CONFFILES}
+do
+ if [ -e "${CONFFILE}" ]
+ then
+ . ${CONFFILE} || true
+ fi
+done
+
+if [ -n "${IRK_TARGETS}" ]
+then
+ db_set open-infrastructure-compute-tools/irc "${IRK_TARGETS}"
+fi
+
+db_settitle open-infrastructure-compute-tools/title
+db_input low open-infrastructure-compute-tools/irc || true
+db_go
+
+db_stop
diff --git a/debian/open-infrastructure-container-tools.postinst b/debian/open-infrastructure-compute-tools.postinst
index 02dd0ff..492a399 100755
--- a/debian/open-infrastructure-container-tools.postinst
+++ b/debian/open-infrastructure-compute-tools.postinst
@@ -100,31 +100,31 @@ case "${1}" in
configure)
. /usr/share/debconf/confmodule
- db_get open-infrastructure-container-tools/machines-directory
+ db_get open-infrastructure-compute-tools/machines-directory
MACHINES_DIRECTORY="${RET:-/var/lib/machines}" # string (w/o empty)
- db_get open-infrastructure-container-tools/config-directory
+ db_get open-infrastructure-compute-tools/config-directory
CONFIG_DIRECTORY="${RET:-/etc/compute-tools/config}" # string (w/o empty)
- db_get open-infrastructure-container-tools/debconf-directory
+ db_get open-infrastructure-compute-tools/debconf-directory
DEBCONF_DIRECTORY="${RET:-/etc/compute-tools/debconf}" # string (w/o empty)
- db_get open-infrastructure-container-tools/hooks-directory
+ db_get open-infrastructure-compute-tools/hooks-directory
HOOKS_DIRECTORY="${RET:-/etc/compute-tools/hooks}" # string (w/o empty)
- db_get open-infrastructure-container-tools/keys-directory
+ db_get open-infrastructure-compute-tools/keys-directory
KEYS_DIRECTORY="${RET:-/etc/compute-tools/keys}" # string (w/o empty)
- db_get open-infrastructure-container-tools/cache-directory
+ db_get open-infrastructure-compute-tools/cache-directory
CACHE_DIRECTORY="${RET:-/var/cache/container}" # string (w/o empty)
- db_get open-infrastructure-container-tools/directory-permissions
+ db_get open-infrastructure-compute-tools/directory-permissions
DIRECTORY_PERMISSIONS="${RET}" # select (w/o empty)
- db_get open-infrastructure-container-tools/build-script
+ db_get open-infrastructure-compute-tools/build-script
SCRIPT="${RET:-debian}" # string (w/o empty)
- db_get open-infrastructure-container-tools/irc
+ db_get open-infrastructure-compute-tools/irc
IRK_TARGETS="${RET}" # string (w/ empty)
db_stop
diff --git a/debian/open-infrastructure-container-tools.postrm b/debian/open-infrastructure-compute-tools.postrm
index 6724b94..6724b94 100755
--- a/debian/open-infrastructure-container-tools.postrm
+++ b/debian/open-infrastructure-compute-tools.postrm
diff --git a/debian/open-infrastructure-container-tools.templates b/debian/open-infrastructure-compute-tools.templates
index 3362b5f..be1a43e 100644
--- a/debian/open-infrastructure-container-tools.templates
+++ b/debian/open-infrastructure-compute-tools.templates
@@ -1,8 +1,8 @@
-Template: open-infrastructure-container-tools/title
+Template: open-infrastructure-compute-tools/title
Type: title
-_Description: container-tools: Setup
+_Description: compute-tools: Setup
-Template: open-infrastructure-container-tools/machines-directory
+Template: open-infrastructure-compute-tools/machines-directory
Type: string
Default: /var/lib/machines
_Description: machines directory:
@@ -11,7 +11,7 @@ _Description: machines directory:
If unsure, use /var/lib/machines (default) or /srv/container/system when
using shared storage.
-Template: open-infrastructure-container-tools/config-directory
+Template: open-infrastructure-compute-tools/config-directory
Type: string
Default: /etc/compute-tools/config
_Description: config directory:
@@ -21,7 +21,7 @@ _Description: config directory:
If unsure, use /etc/compute-tools/config (default) or
/srv/container/config when using shared storage.
-Template: open-infrastructure-container-tools/debconf-directory
+Template: open-infrastructure-compute-tools/debconf-directory
Type: string
Default: /etc/compute-tools/debconf
_Description: debconf directory:
@@ -31,7 +31,7 @@ _Description: debconf directory:
If unsure, use /etc/compute-tools/debconf (default) or
/srv/container/debconf when using shared storage.
-Template: open-infrastructure-container-tools/hooks-directory
+Template: open-infrastructure-compute-tools/hooks-directory
Type: string
Default: /etc/compute-tools/hooks
_Description: hooks directory:
@@ -41,7 +41,7 @@ _Description: hooks directory:
If unsure, use /etc/compute-tools/hooks (default) or /srv/container/hooks
when using shared storage.
-Template: open-infrastructure-container-tools/keys-directory
+Template: open-infrastructure-compute-tools/keys-directory
Type: string
Default: /etc/compute-tools/keys
_Description: keys directory:
@@ -51,7 +51,7 @@ _Description: keys directory:
If unsure, use /etc/compute-tools/keys (default) or /srv/container/keys
when using shared storage.
-Template: open-infrastructure-container-tools/cache-directory
+Template: open-infrastructure-compute-tools/cache-directory
Type: string
Default: /var/cache/container
_Description: cache directory:
@@ -61,7 +61,7 @@ _Description: cache directory:
If unsure, use /var/cache/container (default) or /srv/container/cache when
using shared storage.
-Template: open-infrastructure-container-tools/directory-permissions
+Template: open-infrastructure-compute-tools/directory-permissions
Type: select
Choices-C: 0700, 0755
Choices: root-only, read-only
@@ -74,7 +74,7 @@ _Description: Do you want system-wide readable container directories?
.
If unsure, leave at root-only (default).
-Template: open-infrastructure-container-tools/build-script
+Template: open-infrastructure-compute-tools/build-script
Type: select
Choices: ${SCRIPT_CHOICES}
Default: debian
@@ -84,7 +84,7 @@ _Description: default build script:
.
If unsure, use debian (default).
-Template: open-infrastructure-container-tools/irc
+Template: open-infrastructure-compute-tools/irc
Type: string
Default:
_Description: IRC notifications:
diff --git a/debian/open-infrastructure-container-tools.config b/debian/open-infrastructure-container-tools.config
deleted file mode 100644
index 90f690a..0000000
--- a/debian/open-infrastructure-container-tools.config
+++ /dev/null
@@ -1,64 +0,0 @@
-#!/bin/sh
-
-set -e
-
-CONFFILES="/etc/compute-tools/container.conf /etc/compute-tools/container.conf.d/*.conf"
-
-. /usr/share/debconf/confmodule
-
-db_settitle open-infrastructure-container-tools/title
-db_input low open-infrastructure-container-tools/machines-directory || true
-db_go
-
-db_settitle open-infrastructure-container-tools/title
-db_input low open-infrastructure-container-tools/config-directory || true
-db_go
-
-db_settitle open-infrastructure-container-tools/title
-db_input low open-infrastructure-container-tools/debconf-directory || true
-db_go
-
-db_settitle open-infrastructure-container-tools/title
-db_input low open-infrastructure-container-tools/hooks-directory || true
-db_go
-
-db_settitle open-infrastructure-container-tools/title
-db_input low open-infrastructure-container-tools/keys-directory || true
-db_go
-
-db_settitle open-infrastructure-container-tools/title
-db_input low open-infrastructure-container-tools/cache-directory || true
-db_go
-
-db_settitle open-infrastructure-container-tools/title
-db_input low open-infrastructure-container-tools/directory-permissions || true
-db_go
-
-if [ -e /usr/share/compute-tools/build-scripts ]
-then
- SCRIPT_CHOICES="$(cd /usr/share/compute-tools/build-scripts && find -maxdepth 1 -not -type d -and -not -name 'default' -and -not -name 'debconf' -and -not -name '*.d' -printf '%P\n' | sort)"
- db_subst open-infrastructure-container-tools/build-script SCRIPT_CHOICES "$(echo ${SCRIPT_CHOICES} | sed -e 's| |, |g')"
-
- db_settitle open-infrastructure-container-tools/title
- db_input low open-infrastructure-container-tools/build-script || true
- db_go
-fi
-
-for CONFFILE in ${CONFFILES}
-do
- if [ -e "${CONFFILE}" ]
- then
- . ${CONFFILE} || true
- fi
-done
-
-if [ -n "${IRK_TARGETS}" ]
-then
- db_set open-infrastructure-container-tools/irc "${IRK_TARGETS}"
-fi
-
-db_settitle open-infrastructure-container-tools/title
-db_input low open-infrastructure-container-tools/irc || true
-db_go
-
-db_stop
diff --git a/debian/po/POTFILES.in b/debian/po/POTFILES.in
index dc34e24..425e021 100644
--- a/debian/po/POTFILES.in
+++ b/debian/po/POTFILES.in
@@ -1 +1 @@
-[type: gettext/rfc822deb] open-infrastructure-container-tools.templates
+[type: gettext/rfc822deb] open-infrastructure-compute-tools.templates
diff --git a/debian/po/de.po b/debian/po/de.po
index c789fbf..7479291 100644
--- a/debian/po/de.po
+++ b/debian/po/de.po
@@ -1,6 +1,6 @@
-# German debconf translation of open-infrastructure-container-tools
+# German debconf translation of open-infrastructure-compute-tools
# Copyright (C) 2017-2022 Markus Hiereth <translation@hiereth.de>
-# This file is distributed under the same license as the open-infrastructure-container-tools package.
+# This file is distributed under the same license as the open-infrastructure-compute-tools package.
#
msgid ""
msgstr ""
@@ -18,26 +18,26 @@ msgstr ""
#. Type: title
#. Description
-#: ../open-infrastructure-container-tools.templates:1001
-msgid "container-tools: Setup"
-msgstr "container-tools: Einrichtung"
+#: ../open-infrastructure-compute-tools.templates:1001
+msgid "compute-tools: Setup"
+msgstr "compute-tools: Einrichtung"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid "machines directory:"
msgstr "Maschinen-Verzeichnis:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid "Please specify the directory that will be used to store the containers."
msgstr ""
"Bitte geben Sie das zum Speichern von Containern vorgesehene Verzeichnis an."
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid ""
"If unsure, use /var/lib/machines (default) or /srv/container/system when "
"using shared storage."
@@ -47,13 +47,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid "config directory:"
msgstr "Konfigurationsverzeichnis:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid ""
"Please specify the directory that will be used to store the container "
"configuration files."
@@ -63,7 +63,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid ""
"If unsure, use /etc/compute-tools/config (default) or /srv/container/config "
"when using shared storage."
@@ -73,13 +73,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid "debconf directory:"
msgstr "Debconf-Verzeichnis:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid ""
"Please specify the directory that will be used to store the container "
"preseed files."
@@ -89,7 +89,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid ""
"If unsure, use /etc/compute-tools/debconf (default) or /srv/container/"
"debconf when using shared storage."
@@ -99,13 +99,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid "hooks directory:"
msgstr "Container-Hooks-Verzeichnis:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid ""
"Please specify the directory that will be used to store the container hooks."
msgstr ""
@@ -114,7 +114,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid ""
"If unsure, use /etc/compute-tools/hooks (default) or /srv/container/hooks "
"when using shared storage."
@@ -124,13 +124,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid "keys directory:"
msgstr "Container-Schlüssel-Verzeichnis:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid ""
"Please specify the directory that will be used to store the container keys "
"for verifying container image downloads."
@@ -140,7 +140,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid ""
"If unsure, use /etc/compute-tools/keys (default) or /srv/container/keys when "
"using shared storage."
@@ -150,13 +150,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid "cache directory:"
msgstr "Zwischenspeicher-Verzeichnis:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid ""
"Please specify the directory that will be used to cache files during "
"creation of containers."
@@ -166,7 +166,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid ""
"If unsure, use /var/cache/container (default) or /srv/container/cache when "
"using shared storage."
@@ -176,13 +176,13 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid "Do you want system-wide readable container directories?"
msgstr "Sollen die Container-Verzeichnisse systemweit lesbar sein?"
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid ""
"By default, the machines directory (and a few non-critical additional "
"directories such as 'cache' and 'config') is only readable by the root user. "
@@ -197,19 +197,19 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid "If unsure, leave at root-only (default)."
msgstr "Wenn Sie unsicher sind, belassen Sie es bei der Vorgabe »root-only«."
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid "default build script:"
msgstr "Standard-Erzeugungs-Skript:"
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid ""
"Please select the script that will be used by default to create containers."
msgstr ""
@@ -218,19 +218,19 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid "If unsure, use debian (default)."
msgstr "Wenn Sie unsicher sind, verwenden Sie das Standardskript debian."
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid "IRC notifications:"
msgstr "IRC-Benachrichtigungen:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid ""
"The container command can send IRC notifications via irker to one or more "
"(whitespace separated) IRC channels."
@@ -240,7 +240,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid ""
"The following example will send IRC notifications to the open-infrastructure "
"channel on irc.oftc.net:"
@@ -250,12 +250,12 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid " irc://irc.oftc.net:6668/open-infrastructure"
msgstr " irc://irc.oftc.net:6668/open-infrastructure"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid "If unsure, leave empty (default)."
msgstr "Wenn Sie unsicher sind, geben Sie nichts ein (Standardeinstellung)."
diff --git a/debian/po/es.po b/debian/po/es.po
index b4b555e..0e10de7 100644
--- a/debian/po/es.po
+++ b/debian/po/es.po
@@ -1,6 +1,6 @@
-# Spanish debconf translation of open-infrastructure-container-tools
+# Spanish debconf translation of open-infrastructure-compute-tools
# Copyright (C) 2021-2022 Camaleón <noelamac@gmail.com>
-# This file is distributed under the same license as the open-infrastructure-container-tools package.
+# This file is distributed under the same license as the open-infrastructure-compute-tools package.
#
msgid ""
msgstr ""
@@ -17,19 +17,19 @@ msgstr ""
#. Type: title
#. Description
-#: ../open-infrastructure-container-tools.templates:1001
-msgid "container-tools: Setup"
-msgstr "container-tools: Configuración"
+#: ../open-infrastructure-compute-tools.templates:1001
+msgid "compute-tools: Setup"
+msgstr "compute-tools: Configuración"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid "machines directory:"
msgstr "directorio de máquinas virtuales:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid "Please specify the directory that will be used to store the containers."
msgstr ""
"Por favor, indique el directorio que se usará para almacenar los "
@@ -37,7 +37,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid ""
"If unsure, use /var/lib/machines (default) or /srv/container/system when "
"using shared storage."
@@ -47,13 +47,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid "config directory:"
msgstr "directorio de configuración:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid ""
"Please specify the directory that will be used to store the container "
"configuration files."
@@ -63,7 +63,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid ""
"If unsure, use /etc/compute-tools/config (default) or /srv/container/config "
"when using shared storage."
@@ -74,13 +74,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid "debconf directory:"
msgstr "directorio para debconf:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid ""
"Please specify the directory that will be used to store the container "
"preseed files."
@@ -90,7 +90,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid ""
"If unsure, use /etc/compute-tools/debconf (default) or /srv/container/"
"debconf when using shared storage."
@@ -100,13 +100,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid "hooks directory:"
msgstr "directorio de archivos de órdenes (hooks):"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid ""
"Please specify the directory that will be used to store the container hooks."
msgstr ""
@@ -115,7 +115,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid ""
"If unsure, use /etc/compute-tools/hooks (default) or /srv/container/hooks "
"when using shared storage."
@@ -125,13 +125,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid "keys directory:"
msgstr "directorio de claves:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid ""
"Please specify the directory that will be used to store the container keys "
"for verifying container image downloads."
@@ -141,7 +141,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid ""
"If unsure, use /etc/compute-tools/keys (default) or /srv/container/keys when "
"using shared storage."
@@ -151,13 +151,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid "cache directory:"
msgstr "directorio de caché:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid ""
"Please specify the directory that will be used to cache files during "
"creation of containers."
@@ -167,7 +167,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid ""
"If unsure, use /var/cache/container (default) or /srv/container/cache when "
"using shared storage."
@@ -177,13 +177,13 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid "Do you want system-wide readable container directories?"
msgstr "¿Quiere que los directorios de contenedores sean legibles por todos?"
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid ""
"By default, the machines directory (and a few non-critical additional "
"directories such as 'cache' and 'config') is only readable by the root user. "
@@ -198,19 +198,19 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid "If unsure, leave at root-only (default)."
msgstr "Si no está seguro, déjelo en «root-only» (predeterminado)."
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid "default build script:"
msgstr "guión de creación predeterminado:"
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid ""
"Please select the script that will be used by default to create containers."
msgstr ""
@@ -219,19 +219,19 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid "If unsure, use debian (default)."
msgstr "Si no está seguro, use debian (predeterminado)."
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid "IRC notifications:"
msgstr "Notificaciones IRC:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid ""
"The container command can send IRC notifications via irker to one or more "
"(whitespace separated) IRC channels."
@@ -241,7 +241,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid ""
"The following example will send IRC notifications to the open-infrastructure "
"channel on irc.oftc.net:"
@@ -251,12 +251,12 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid " irc://irc.oftc.net:6668/open-infrastructure"
msgstr " irc://irc.oftc.net:6668/open-infrastructure"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid "If unsure, leave empty (default)."
msgstr "Si no está seguro, déjelo en blanco (predeterminado)."
diff --git a/debian/po/fr.po b/debian/po/fr.po
index 30df12c..63da67c 100644
--- a/debian/po/fr.po
+++ b/debian/po/fr.po
@@ -1,10 +1,10 @@
-# French translation of open-infrastructure-container-tools debconf templates.
+# French translation of open-infrastructure-compute-tools debconf templates.
# Copyright (C) 2016-2019 Jean-Pierre Giraud <jean-pierregiraud@neuf.fr>
-# This file is distributed under the same license as the open-infrastructure-container-tools package.
+# This file is distributed under the same license as the open-infrastructure-compute-tools package.
#
msgid ""
msgstr ""
-"Project-Id-Version: open-infrastructure-container-tools\n"
+"Project-Id-Version: open-infrastructure-compute-tools\n"
"Report-Msgid-Bugs-To: open-infrastructure-compute-tools@packages.debian.org\n"
"POT-Creation-Date: 2022-10-02 15:20+0200\n"
"PO-Revision-Date: 2019-06-06 23:50+0100\n"
@@ -18,26 +18,26 @@ msgstr ""
#. Type: title
#. Description
-#: ../open-infrastructure-container-tools.templates:1001
-msgid "container-tools: Setup"
-msgstr "container-tools : configuration"
+#: ../open-infrastructure-compute-tools.templates:1001
+msgid "compute-tools: Setup"
+msgstr "compute-tools : configuration"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid "machines directory:"
msgstr "Répertoire des machines :"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid "Please specify the directory that will be used to store the containers."
msgstr ""
"Veuillez indiquer le répertoire qui sera utilisé pour stocker les conteneurs."
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid ""
"If unsure, use /var/lib/machines (default) or /srv/container/system when "
"using shared storage."
@@ -47,13 +47,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid "config directory:"
msgstr "Répertoire de configuration :"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid ""
"Please specify the directory that will be used to store the container "
"configuration files."
@@ -63,7 +63,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid ""
"If unsure, use /etc/compute-tools/config (default) or /srv/container/config "
"when using shared storage."
@@ -73,13 +73,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid "debconf directory:"
msgstr "Répertoire de la configuration Debian :"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid ""
"Please specify the directory that will be used to store the container "
"preseed files."
@@ -89,7 +89,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid ""
"If unsure, use /etc/compute-tools/debconf (default) or /srv/container/"
"debconf when using shared storage."
@@ -99,7 +99,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
#, fuzzy
#| msgid "cache directory:"
msgid "hooks directory:"
@@ -107,7 +107,7 @@ msgstr "Répertoire cache :"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid ""
"Please specify the directory that will be used to store the container hooks."
msgstr ""
@@ -116,7 +116,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid ""
"If unsure, use /etc/compute-tools/hooks (default) or /srv/container/hooks "
"when using shared storage."
@@ -126,7 +126,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
#, fuzzy
#| msgid "cache directory:"
msgid "keys directory:"
@@ -134,7 +134,7 @@ msgstr "Répertoire cache :"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid ""
"Please specify the directory that will be used to store the container keys "
"for verifying container image downloads."
@@ -144,7 +144,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid ""
"If unsure, use /etc/compute-tools/keys (default) or /srv/container/keys when "
"using shared storage."
@@ -154,13 +154,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid "cache directory:"
msgstr "Répertoire cache :"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid ""
"Please specify the directory that will be used to cache files during "
"creation of containers."
@@ -170,7 +170,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid ""
"If unsure, use /var/cache/container (default) or /srv/container/cache when "
"using shared storage."
@@ -180,13 +180,13 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid "Do you want system-wide readable container directories?"
msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid ""
"By default, the machines directory (and a few non-critical additional "
"directories such as 'cache' and 'config') is only readable by the root user. "
@@ -196,7 +196,7 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
#, fuzzy
#| msgid "If unsure, leave empty (default)."
msgid "If unsure, leave at root-only (default)."
@@ -204,7 +204,7 @@ msgstr "En cas de doute, laissez le champ vide (par défaut)."
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
#, fuzzy
#| msgid "create script:"
msgid "default build script:"
@@ -212,7 +212,7 @@ msgstr "Script à créer :"
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid ""
"Please select the script that will be used by default to create containers."
msgstr ""
@@ -221,19 +221,19 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid "If unsure, use debian (default)."
msgstr "En cas de doute, utilisez debian (par défaut)."
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid "IRC notifications:"
msgstr "Notifications IRC :"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid ""
"The container command can send IRC notifications via irker to one or more "
"(whitespace separated) IRC channels."
@@ -243,7 +243,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid ""
"The following example will send IRC notifications to the open-infrastructure "
"channel on irc.oftc.net:"
@@ -253,12 +253,12 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid " irc://irc.oftc.net:6668/open-infrastructure"
msgstr " irc://irc.oftc.net:6668/open-infrastructure"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid "If unsure, leave empty (default)."
msgstr "En cas de doute, laissez le champ vide (par défaut)."
diff --git a/debian/po/nl.po b/debian/po/nl.po
index 46cc2e6..498ab19 100644
--- a/debian/po/nl.po
+++ b/debian/po/nl.po
@@ -1,6 +1,6 @@
-# Dutch translation of open-infrastructure-container-tools debconf templates.
+# Dutch translation of open-infrastructure-compute-tools debconf templates.
# Copyright (C) 2016-2022 Frans Spiesschaert <Frans.Spiesschaert@yucom.be>
-# This file is distributed under the same license as the open-infrastructure-container-tools package.
+# This file is distributed under the same license as the open-infrastructure-compute-tools package.
#
msgid ""
msgstr ""
@@ -18,26 +18,26 @@ msgstr ""
#. Type: title
#. Description
-#: ../open-infrastructure-container-tools.templates:1001
-msgid "container-tools: Setup"
-msgstr "container-tools: Instellingen"
+#: ../open-infrastructure-compute-tools.templates:1001
+msgid "compute-tools: Setup"
+msgstr "compute-tools: Instellingen"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid "machines directory:"
msgstr "machinemap:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid "Please specify the directory that will be used to store the containers."
msgstr ""
"Geef op welke map gebruikt zal worden om de containers in onder te brengen."
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid ""
"If unsure, use /var/lib/machines (default) or /srv/container/system when "
"using shared storage."
@@ -47,13 +47,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid "config directory:"
msgstr "configuratiemap:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid ""
"Please specify the directory that will be used to store the container "
"configuration files."
@@ -63,7 +63,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid ""
"If unsure, use /etc/compute-tools/config (default) or /srv/container/config "
"when using shared storage."
@@ -73,13 +73,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid "debconf directory:"
msgstr "debconf-map:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid ""
"Please specify the directory that will be used to store the container "
"preseed files."
@@ -89,7 +89,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid ""
"If unsure, use /etc/compute-tools/debconf (default) or /srv/container/"
"debconf when using shared storage."
@@ -100,13 +100,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid "hooks directory:"
msgstr "map met uitbreidingen:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid ""
"Please specify the directory that will be used to store the container hooks."
msgstr ""
@@ -115,7 +115,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid ""
"If unsure, use /etc/compute-tools/hooks (default) or /srv/container/hooks "
"when using shared storage."
@@ -125,13 +125,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid "keys directory:"
msgstr "map met sleutels:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid ""
"Please specify the directory that will be used to store the container keys "
"for verifying container image downloads."
@@ -141,7 +141,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid ""
"If unsure, use /etc/compute-tools/keys (default) or /srv/container/keys when "
"using shared storage."
@@ -151,13 +151,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid "cache directory:"
msgstr "cache-map:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid ""
"Please specify the directory that will be used to cache files during "
"creation of containers."
@@ -167,7 +167,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid ""
"If unsure, use /var/cache/container (default) or /srv/container/cache when "
"using shared storage."
@@ -177,13 +177,13 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid "Do you want system-wide readable container directories?"
msgstr "Wilt u systeembreed leesbare containermappen?"
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid ""
"By default, the machines directory (and a few non-critical additional "
"directories such as 'cache' and 'config') is only readable by the root user. "
@@ -197,19 +197,19 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid "If unsure, leave at root-only (default)."
msgstr "Als u twijfelt, laat u dit best staan op alleen-root (standaard)."
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid "default build script:"
msgstr "standaard aanmaakscript:"
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid ""
"Please select the script that will be used by default to create containers."
msgstr ""
@@ -217,19 +217,19 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid "If unsure, use debian (default)."
msgstr "Indien u twijfelt, gebruik dan debian (standaard)."
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid "IRC notifications:"
msgstr "Kennisgeving via IRC:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid ""
"The container command can send IRC notifications via irker to one or more "
"(whitespace separated) IRC channels."
@@ -239,7 +239,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid ""
"The following example will send IRC notifications to the open-infrastructure "
"channel on irc.oftc.net:"
@@ -249,12 +249,12 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid " irc://irc.oftc.net:6668/open-infrastructure"
msgstr " irc://irc.oftc.net:6668/open-infrastructure"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid "If unsure, leave empty (default)."
msgstr "Als u twijfelt, laat u dit best leeg (standaard)."
diff --git a/debian/po/pt.po b/debian/po/pt.po
index ae67532..e1620ab 100644
--- a/debian/po/pt.po
+++ b/debian/po/pt.po
@@ -1,10 +1,10 @@
-# Portuguese translation of open-infrastructure-container-tools debconf templates.
+# Portuguese translation of open-infrastructure-compute-tools debconf templates.
# Copyright (C) 2017 Rui Branco <ruipb@debianpt.org>
-# This file is distributed under the same license as the open-infrastructure-container-tools package.
+# This file is distributed under the same license as the open-infrastructure-compute-tools package.
#
msgid ""
msgstr ""
-"Project-Id-Version: open-infrastructure-container-tools 20161101-lts2-2\n"
+"Project-Id-Version: open-infrastructure-compute-tools 20161101-lts2-2\n"
"Report-Msgid-Bugs-To: open-infrastructure-compute-tools@packages.debian.org\n"
"POT-Creation-Date: 2022-10-02 15:20+0200\n"
"PO-Revision-Date: 2017-08-02 21:47+0000\n"
@@ -18,19 +18,19 @@ msgstr ""
#. Type: title
#. Description
-#: ../open-infrastructure-container-tools.templates:1001
-msgid "container-tools: Setup"
-msgstr "container-tools: Configuração"
+#: ../open-infrastructure-compute-tools.templates:1001
+msgid "compute-tools: Setup"
+msgstr "compute-tools: Configuração"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid "machines directory:"
msgstr "Directório de máquinas:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid "Please specify the directory that will be used to store the containers."
msgstr ""
"Por favor especifique um directório que será usado para guardar os "
@@ -38,7 +38,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid ""
"If unsure, use /var/lib/machines (default) or /srv/container/system when "
"using shared storage."
@@ -48,13 +48,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid "config directory:"
msgstr "Directório de configuração:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid ""
"Please specify the directory that will be used to store the container "
"configuration files."
@@ -64,7 +64,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid ""
"If unsure, use /etc/compute-tools/config (default) or /srv/container/config "
"when using shared storage."
@@ -74,13 +74,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid "debconf directory:"
msgstr "Directório do debconf:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid ""
"Please specify the directory that will be used to store the container "
"preseed files."
@@ -90,7 +90,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid ""
"If unsure, use /etc/compute-tools/debconf (default) or /srv/container/"
"debconf when using shared storage."
@@ -100,7 +100,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
#, fuzzy
#| msgid "cache directory:"
msgid "hooks directory:"
@@ -108,7 +108,7 @@ msgstr "Directório de cache:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid ""
"Please specify the directory that will be used to store the container hooks."
msgstr ""
@@ -117,7 +117,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid ""
"If unsure, use /etc/compute-tools/hooks (default) or /srv/container/hooks "
"when using shared storage."
@@ -127,7 +127,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
#, fuzzy
#| msgid "cache directory:"
msgid "keys directory:"
@@ -135,7 +135,7 @@ msgstr "Directório de cache:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid ""
"Please specify the directory that will be used to store the container keys "
"for verifying container image downloads."
@@ -145,7 +145,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid ""
"If unsure, use /etc/compute-tools/keys (default) or /srv/container/keys when "
"using shared storage."
@@ -155,13 +155,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid "cache directory:"
msgstr "Directório de cache:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid ""
"Please specify the directory that will be used to cache files during "
"creation of containers."
@@ -171,7 +171,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid ""
"If unsure, use /var/cache/container (default) or /srv/container/cache when "
"using shared storage."
@@ -181,13 +181,13 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid "Do you want system-wide readable container directories?"
msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid ""
"By default, the machines directory (and a few non-critical additional "
"directories such as 'cache' and 'config') is only readable by the root user. "
@@ -197,7 +197,7 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
#, fuzzy
#| msgid "If unsure, leave empty (default)."
msgid "If unsure, leave at root-only (default)."
@@ -205,7 +205,7 @@ msgstr "Se tem dúvidas deixe em branco (predefinição)."
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
#, fuzzy
#| msgid "create script:"
msgid "default build script:"
@@ -213,7 +213,7 @@ msgstr "Criar script:"
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid ""
"Please select the script that will be used by default to create containers."
msgstr ""
@@ -222,19 +222,19 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid "If unsure, use debian (default)."
msgstr "Em caso de dúvida utilize debian (predefinido)."
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid "IRC notifications:"
msgstr "Notificações IRC:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid ""
"The container command can send IRC notifications via irker to one or more "
"(whitespace separated) IRC channels."
@@ -244,7 +244,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid ""
"The following example will send IRC notifications to the open-infrastructure "
"channel on irc.oftc.net:"
@@ -254,12 +254,12 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid " irc://irc.oftc.net:6668/open-infrastructure"
msgstr " irc://irc.oftc.net:6668/open-infrastructure"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid "If unsure, leave empty (default)."
msgstr "Se tem dúvidas deixe em branco (predefinição)."
diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po
index b6c7a1f..ead7a9a 100644
--- a/debian/po/pt_BR.po
+++ b/debian/po/pt_BR.po
@@ -1,10 +1,10 @@
-# Brazilian Portuguese translation of open-infrastructure-container-tools debconf templates.
+# Brazilian Portuguese translation of open-infrastructure-compute-tools debconf templates.
# Copyright (C) 2016 Adriano Rafael Gomes <adrianorg@debian.org>
-# This file is distributed under the same license as the open-infrastructure-container-tools package.
+# This file is distributed under the same license as the open-infrastructure-compute-tools package.
#
msgid ""
msgstr ""
-"Project-Id-Version: open-infrastructure-container-tools\n"
+"Project-Id-Version: open-infrastructure-compute-tools\n"
"Report-Msgid-Bugs-To: open-infrastructure-compute-tools@packages.debian.org\n"
"POT-Creation-Date: 2022-10-02 15:20+0200\n"
"PO-Revision-Date: 2016-08-25 22:07-0300\n"
@@ -18,19 +18,19 @@ msgstr ""
#. Type: title
#. Description
-#: ../open-infrastructure-container-tools.templates:1001
-msgid "container-tools: Setup"
-msgstr "container-tools: Configuração"
+#: ../open-infrastructure-compute-tools.templates:1001
+msgid "compute-tools: Setup"
+msgstr "compute-tools: Configuração"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid "machines directory:"
msgstr "diretório de máquinas:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid "Please specify the directory that will be used to store the containers."
msgstr ""
"Por favor, especifique o diretório que será usado para armazenar os "
@@ -38,7 +38,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid ""
"If unsure, use /var/lib/machines (default) or /srv/container/system when "
"using shared storage."
@@ -48,13 +48,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid "config directory:"
msgstr "diretório de configuração:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid ""
"Please specify the directory that will be used to store the container "
"configuration files."
@@ -64,7 +64,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid ""
"If unsure, use /etc/compute-tools/config (default) or /srv/container/config "
"when using shared storage."
@@ -74,13 +74,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid "debconf directory:"
msgstr "diretório do debconf:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid ""
"Please specify the directory that will be used to store the container "
"preseed files."
@@ -90,7 +90,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid ""
"If unsure, use /etc/compute-tools/debconf (default) or /srv/container/"
"debconf when using shared storage."
@@ -100,7 +100,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
#, fuzzy
#| msgid "cache directory:"
msgid "hooks directory:"
@@ -108,14 +108,14 @@ msgstr "diretório de cache:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid ""
"Please specify the directory that will be used to store the container hooks."
msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid ""
"If unsure, use /etc/compute-tools/hooks (default) or /srv/container/hooks "
"when using shared storage."
@@ -125,7 +125,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
#, fuzzy
#| msgid "cache directory:"
msgid "keys directory:"
@@ -133,7 +133,7 @@ msgstr "diretório de cache:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid ""
"Please specify the directory that will be used to store the container keys "
"for verifying container image downloads."
@@ -143,7 +143,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid ""
"If unsure, use /etc/compute-tools/keys (default) or /srv/container/keys when "
"using shared storage."
@@ -153,13 +153,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid "cache directory:"
msgstr "diretório de cache:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid ""
"Please specify the directory that will be used to cache files during "
"creation of containers."
@@ -169,7 +169,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid ""
"If unsure, use /var/cache/container (default) or /srv/container/cache when "
"using shared storage."
@@ -179,13 +179,13 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid "Do you want system-wide readable container directories?"
msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid ""
"By default, the machines directory (and a few non-critical additional "
"directories such as 'cache' and 'config') is only readable by the root user. "
@@ -195,7 +195,7 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
#, fuzzy
#| msgid "If unsure, use debian (default)."
msgid "If unsure, leave at root-only (default)."
@@ -203,7 +203,7 @@ msgstr "Se não tiver certeza, use debian (padrão)."
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
#, fuzzy
#| msgid "create script:"
msgid "default build script:"
@@ -211,7 +211,7 @@ msgstr "script de criação:"
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid ""
"Please select the script that will be used by default to create containers."
msgstr ""
@@ -220,19 +220,19 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid "If unsure, use debian (default)."
msgstr "Se não tiver certeza, use debian (padrão)."
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid "IRC notifications:"
msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid ""
"The container command can send IRC notifications via irker to one or more "
"(whitespace separated) IRC channels."
@@ -240,7 +240,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid ""
"The following example will send IRC notifications to the open-infrastructure "
"channel on irc.oftc.net:"
@@ -248,12 +248,12 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid " irc://irc.oftc.net:6668/open-infrastructure"
msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid "If unsure, leave empty (default)."
msgstr ""
diff --git a/debian/po/ru.po b/debian/po/ru.po
index 8e37f0f..95b16a5 100644
--- a/debian/po/ru.po
+++ b/debian/po/ru.po
@@ -1,9 +1,9 @@
-# Russian debconf translation of open-infrastructure-container-tools
+# Russian debconf translation of open-infrastructure-compute-tools
# Copyright (C) 2017 Lev Lamberov <dogsleg@debian.org>
-# This file is distributed under the same license as the open-infrastructure-container-tools package.
+# This file is distributed under the same license as the open-infrastructure-compute-tools package.
msgid ""
msgstr ""
-"Project-Id-Version: open-infrastructure-container-tools\n"
+"Project-Id-Version: open-infrastructure-compute-tools\n"
"Report-Msgid-Bugs-To: open-infrastructure-compute-tools@packages.debian.org\n"
"POT-Creation-Date: 2022-10-02 15:20+0200\n"
"PO-Revision-Date: 2017-12-03 22:46+0500\n"
@@ -18,26 +18,26 @@ msgstr ""
#. Type: title
#. Description
-#: ../open-infrastructure-container-tools.templates:1001
-msgid "container-tools: Setup"
-msgstr "container-tools: настройка"
+#: ../open-infrastructure-compute-tools.templates:1001
+msgid "compute-tools: Setup"
+msgstr "compute-tools: настройка"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid "machines directory:"
msgstr "каталог машин:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid "Please specify the directory that will be used to store the containers."
msgstr ""
"Укажите каталог, который будет использоваться для хранения контейнеров."
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid ""
"If unsure, use /var/lib/machines (default) or /srv/container/system when "
"using shared storage."
@@ -47,13 +47,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid "config directory:"
msgstr "каталог настроек:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid ""
"Please specify the directory that will be used to store the container "
"configuration files."
@@ -62,7 +62,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid ""
"If unsure, use /etc/compute-tools/config (default) or /srv/container/config "
"when using shared storage."
@@ -72,13 +72,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid "debconf directory:"
msgstr "каталог debconf:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid ""
"Please specify the directory that will be used to store the container "
"preseed files."
@@ -88,7 +88,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid ""
"If unsure, use /etc/compute-tools/debconf (default) or /srv/container/"
"debconf when using shared storage."
@@ -98,7 +98,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
#, fuzzy
#| msgid "cache directory:"
msgid "hooks directory:"
@@ -106,7 +106,7 @@ msgstr "каталог кэша:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid ""
"Please specify the directory that will be used to store the container hooks."
msgstr ""
@@ -115,7 +115,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid ""
"If unsure, use /etc/compute-tools/hooks (default) or /srv/container/hooks "
"when using shared storage."
@@ -125,7 +125,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
#, fuzzy
#| msgid "cache directory:"
msgid "keys directory:"
@@ -133,7 +133,7 @@ msgstr "каталог кэша:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid ""
"Please specify the directory that will be used to store the container keys "
"for verifying container image downloads."
@@ -143,7 +143,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid ""
"If unsure, use /etc/compute-tools/keys (default) or /srv/container/keys when "
"using shared storage."
@@ -153,13 +153,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid "cache directory:"
msgstr "каталог кэша:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid ""
"Please specify the directory that will be used to cache files during "
"creation of containers."
@@ -169,7 +169,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid ""
"If unsure, use /var/cache/container (default) or /srv/container/cache when "
"using shared storage."
@@ -179,13 +179,13 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid "Do you want system-wide readable container directories?"
msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid ""
"By default, the machines directory (and a few non-critical additional "
"directories such as 'cache' and 'config') is only readable by the root user. "
@@ -195,7 +195,7 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
#, fuzzy
#| msgid "If unsure, leave empty (default)."
msgid "If unsure, leave at root-only (default)."
@@ -203,7 +203,7 @@ msgstr "Если вы не уверены, то оставьте это поле
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
#, fuzzy
#| msgid "create script:"
msgid "default build script:"
@@ -211,7 +211,7 @@ msgstr "сценарий создания:"
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid ""
"Please select the script that will be used by default to create containers."
msgstr ""
@@ -219,19 +219,19 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid "If unsure, use debian (default)."
msgstr "Если вы не уверены, то используйте debian (по умолчанию)."
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid "IRC notifications:"
msgstr "IRC-уведомления:"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid ""
"The container command can send IRC notifications via irker to one or more "
"(whitespace separated) IRC channels."
@@ -241,7 +241,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid ""
"The following example will send IRC notifications to the open-infrastructure "
"channel on irc.oftc.net:"
@@ -251,12 +251,12 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid " irc://irc.oftc.net:6668/open-infrastructure"
msgstr " irc://irc.oftc.net:6668/open-infrastructure"
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid "If unsure, leave empty (default)."
msgstr "Если вы не уверены, то оставьте это поле пустым (по умолчанию)."
diff --git a/debian/po/templates.pot b/debian/po/templates.pot
index 2ad88ec..722dcba 100644
--- a/debian/po/templates.pot
+++ b/debian/po/templates.pot
@@ -19,25 +19,25 @@ msgstr ""
#. Type: title
#. Description
-#: ../open-infrastructure-container-tools.templates:1001
-msgid "container-tools: Setup"
+#: ../open-infrastructure-compute-tools.templates:1001
+msgid "compute-tools: Setup"
msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid "machines directory:"
msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid "Please specify the directory that will be used to store the containers."
msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:2001
+#: ../open-infrastructure-compute-tools.templates:2001
msgid ""
"If unsure, use /var/lib/machines (default) or /srv/container/system when "
"using shared storage."
@@ -45,13 +45,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid "config directory:"
msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid ""
"Please specify the directory that will be used to store the container "
"configuration files."
@@ -59,7 +59,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:3001
+#: ../open-infrastructure-compute-tools.templates:3001
msgid ""
"If unsure, use /etc/compute-tools/config (default) or /srv/container/config "
"when using shared storage."
@@ -67,13 +67,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid "debconf directory:"
msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid ""
"Please specify the directory that will be used to store the container "
"preseed files."
@@ -81,7 +81,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:4001
+#: ../open-infrastructure-compute-tools.templates:4001
msgid ""
"If unsure, use /etc/compute-tools/debconf (default) or /srv/container/"
"debconf when using shared storage."
@@ -89,20 +89,20 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid "hooks directory:"
msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid ""
"Please specify the directory that will be used to store the container hooks."
msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:5001
+#: ../open-infrastructure-compute-tools.templates:5001
msgid ""
"If unsure, use /etc/compute-tools/hooks (default) or /srv/container/hooks "
"when using shared storage."
@@ -110,13 +110,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid "keys directory:"
msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid ""
"Please specify the directory that will be used to store the container keys "
"for verifying container image downloads."
@@ -124,7 +124,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:6001
+#: ../open-infrastructure-compute-tools.templates:6001
msgid ""
"If unsure, use /etc/compute-tools/keys (default) or /srv/container/keys when "
"using shared storage."
@@ -132,13 +132,13 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid "cache directory:"
msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid ""
"Please specify the directory that will be used to cache files during "
"creation of containers."
@@ -146,7 +146,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:7001
+#: ../open-infrastructure-compute-tools.templates:7001
msgid ""
"If unsure, use /var/cache/container (default) or /srv/container/cache when "
"using shared storage."
@@ -154,13 +154,13 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid "Do you want system-wide readable container directories?"
msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid ""
"By default, the machines directory (and a few non-critical additional "
"directories such as 'cache' and 'config') is only readable by the root user. "
@@ -170,38 +170,38 @@ msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:8001
+#: ../open-infrastructure-compute-tools.templates:8001
msgid "If unsure, leave at root-only (default)."
msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid "default build script:"
msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid ""
"Please select the script that will be used by default to create containers."
msgstr ""
#. Type: select
#. Description
-#: ../open-infrastructure-container-tools.templates:9001
+#: ../open-infrastructure-compute-tools.templates:9001
msgid "If unsure, use debian (default)."
msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid "IRC notifications:"
msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid ""
"The container command can send IRC notifications via irker to one or more "
"(whitespace separated) IRC channels."
@@ -209,7 +209,7 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid ""
"The following example will send IRC notifications to the open-infrastructure "
"channel on irc.oftc.net:"
@@ -217,12 +217,12 @@ msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid " irc://irc.oftc.net:6668/open-infrastructure"
msgstr ""
#. Type: string
#. Description
-#: ../open-infrastructure-container-tools.templates:10001
+#: ../open-infrastructure-compute-tools.templates:10001
msgid "If unsure, leave empty (default)."
msgstr ""
diff --git a/debian/rules b/debian/rules
index f2a01c2..f543379 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,6 +1,6 @@
#!/usr/bin/make -f
-PACKAGE := open-infrastructure-container-tools
+PACKAGE := open-infrastructure-compute-tools
%:
dh ${@}