From 511396003bea84b9ca8d845cf8ce12ac0aeed8f2 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 Feb 2023 12:18:55 +0100 Subject: Renaming container-tools to compute-tools to avoid future NEW processing when adding kvm backend. Signed-off-by: Daniel Baumann --- debian/control | 24 ++- debian/open-infrastructure-compute-tools.NEWS | 184 ++++++++++++++++++++ .../open-infrastructure-compute-tools.alternatives | 29 ++++ debian/open-infrastructure-compute-tools.config | 64 +++++++ debian/open-infrastructure-compute-tools.postinst | 191 +++++++++++++++++++++ debian/open-infrastructure-compute-tools.postrm | 57 ++++++ debian/open-infrastructure-compute-tools.templates | 99 +++++++++++ debian/open-infrastructure-container-tools.NEWS | 184 -------------------- ...pen-infrastructure-container-tools.alternatives | 29 ---- debian/open-infrastructure-container-tools.config | 64 ------- .../open-infrastructure-container-tools.postinst | 191 --------------------- debian/open-infrastructure-container-tools.postrm | 57 ------ .../open-infrastructure-container-tools.templates | 99 ----------- debian/po/POTFILES.in | 2 +- debian/po/de.po | 68 ++++---- debian/po/es.po | 68 ++++---- debian/po/fr.po | 70 ++++---- debian/po/nl.po | 68 ++++---- debian/po/pt.po | 70 ++++---- debian/po/pt_BR.po | 70 ++++---- debian/po/ru.po | 70 ++++---- debian/po/templates.pot | 62 +++---- debian/rules | 2 +- 23 files changed, 919 insertions(+), 903 deletions(-) create mode 100644 debian/open-infrastructure-compute-tools.NEWS create mode 100644 debian/open-infrastructure-compute-tools.alternatives create mode 100644 debian/open-infrastructure-compute-tools.config create mode 100755 debian/open-infrastructure-compute-tools.postinst create mode 100755 debian/open-infrastructure-compute-tools.postrm create mode 100644 debian/open-infrastructure-compute-tools.templates delete mode 100644 debian/open-infrastructure-container-tools.NEWS delete mode 100644 debian/open-infrastructure-container-tools.alternatives delete mode 100644 debian/open-infrastructure-container-tools.config delete mode 100755 debian/open-infrastructure-container-tools.postinst delete mode 100755 debian/open-infrastructure-container-tools.postrm delete mode 100644 debian/open-infrastructure-container-tools.templates 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-compute-tools.NEWS b/debian/open-infrastructure-compute-tools.NEWS new file mode 100644 index 0000000..7927358 --- /dev/null +++ b/debian/open-infrastructure-compute-tools.NEWS @@ -0,0 +1,184 @@ +open-infrastructure-compute-tools (20210726-1) experimental; urgency=medium + + * Backward incompatible changes: + - The container create command has been renamed to 'build'. + - The container create script using curl is now a 'get' script + for the new container get command. + + -- Daniel Baumann Mon, 26 Jul 2021 06:10:41 +0200 + +open-infrastructure-compute-tools (20210630-1) experimental; urgency=medium + + * Backward incompatible changes: + - Reverting openvswitch, not really ready yet. + + -- Daniel Baumann Tue, 29 Jun 2021 14:17:55 +0200 + +open-infrastructure-compute-tools (20210629-1) experimental; urgency=medium + + * Backward incompatible changes: + - The networking integration on the container host depended on + ifupdown. Now, to support KVM as an additional backend + alongside systemd-nspawn in compute-tools, we're switching + in this version exclusively to openvswitch. + - Moving from ifupdown to openvswitch to manage the bridges + requires manual re-configuration of the networking stack on + the host, otherwise no container will continue to have network + access. + - Configuration examples for systemd-networkd (recommended) on the + host to use openvswitch are documented in + /usr/share/doc/compute-tools/HOST-SETUP.txt. + + -- Daniel Baumann Tue, 29 Jun 2021 14:12:57 +0200 + +open-infrastructure-compute-tools (20210411-1) experimental; urgency=medium + + * Backward incompatible changes: + - all path have been shortened in preparation for additional + backends alongside systemd-nspawn: The only user visible is the + configuration directory: + + new: /etc/open-infrastructure/container + old: /etc/compute-tools + + -- Daniel Baumann Sun, 11 Apr 2021 15:54:06 +0200 + +open-infrastructure-compute-tools (20190319-1) experimental; urgency=medium + + * Backward incompatible changes: + - with the initial support for IPv6 network configuration + the IPv4 netmask now needs to be specified in CIDR + notation, e.g. '255.255.255.0' becomes '24'. + + -- Daniel Baumann Tue, 19 Mar 2019 21:01:07 +0100 + +open-infrastructure-compute-tools (20190222-1) unstable; urgency=medium + + * Backward incompatible changes: + - replaced Progress Linux 4 and Progress Linux 4+ support in + container debconf create script in favour of Progress Linux 5 + and Progress Linux 5+ support. + + - renamed upstream from container-tools to compute-tools, + directory names have changed. The only user visible is the + configuration directory: + + old: /etc/container-tools + new: /etc/open-infrastructure/container + + - harmonized field names in container debconf create script: + + old: container-tools cnt-debconf/[...] + new: compute-tools container/[...] + + See updated example files in /usr/share/doc/open-infrastructure-container-tools/examples. + + -- Daniel Baumann Sun, 17 Feb 2019 18:41:42 +0100 + +open-infrastructure-container-tools (20170722-1) unstable; urgency=low + + * Backward incompatible changes: + - new default URL to download images in curl create script (files.open-infrastructure.net) + - new default for bridge interface (bridge0 instead of br0) + - new default for container interface (eno1 instead of eth0) + - renaming --image option to --system in curl container create script + - renaming curl image cache directory from /var/cache/container-tools/images to /var/cache/container-tools/system + - Starting to count at 1 instead of 0 in preseed files: + + old: container-tools cnt-debconf/archive0/... + new: container-tools cnt-debconf/archive1/... + + old: container-tools cnt-debconf/network0/... + new: container-tools cnt-debconf/network1/... + + -- Daniel Baumann Sun, 23 Jul 2017 10:31:48 +0200 + +open-infrastructure-container-tools (20170629-1) unstable; urgency=low + + * Backward incompatible changes: + - container auto configuration in the [start] section to + entangle shared storage/automatically start at boot time + support: + + old: cnt.auto=true + + new: cnt.auto=true + cnt.container-server=${FQDN} + + whereas ${FQDN} needs to be replaced with the actual hostname + of the container server. + + -- Daniel Baumann Thu, 29 Jun 2017 11:23:15 +0200 + +open-infrastructure-container-tools (20161210-1) experimental; urgency=low + + * Backward incompatible changes: + - container list shows now only the first IPv4 address. + - container rename command has been renamed to move. + - container list full format has been renamed to cli. + - container list short format has been renamed to shell. + + -- Daniel Baumann Sun, 11 Dec 2016 13:35:40 +0100 + +open-infrastructure-container-tools (20161122-1) experimental; urgency=low + + * Backward incompatible changes: + - renaming curl cache directory from /var/cache/container-tools/curl to + /var/cache/container-tools/images. + + -- Daniel Baumann Tue, 22 Nov 2016 16:10:38 +0100 + +open-infrastructure-container-tools (20161112-1) experimental; urgency=low + + * Backward incompatible changes: + - removes support to create Debian 8 (jessie) container in debconf container + create script. + + -- Daniel Baumann Sat, 12 Nov 2016 08:52:48 +0100 + +open-infrastructure-container-tools (20161105-1) experimental; urgency=low + + * Backward incompatible changes: + - container use systemd-networkd instead of ifupdown. + + -- Daniel Baumann Sun, 06 Nov 2016 09:45:19 +0100 + +open-infrastructure-container-tools (20160601-1) unstable; urgency=low + + * Backward incompatible changes: + - for consistency reasons, instead of any file only files + with .cfg suffix are accepted as preseed files in + /etc/container-tools/debconf. + + -- Daniel Baumann Wed, 01 Jun 2016 16:00:50 +0200 + +open-infrastructure-container-tools (20160515-1) unstable; urgency=low + + * Backward incompatible changes: + - container network configuration in the [start] section for + multi-interface support: + + old: network-veth=yes + network-bridge=br0 + + new: cnt.network-bridge=veth-foo:br0 + network-veth-extra=veth-foo:eth0 + cnt.network-bridge=veth-bar:br1 + network-veth-extra=veth-bar:eth1 + + - default container network device switched from host0 to eth0. + - container start in background by default. + - container-autostart has been renamed to container-auto. + - container autostart configuration in the [start] section: + + old: cnt.autostart=true|FQDN + new: cnt.auto=true|FQDN + + -- Daniel Baumann Wed, 18 May 2016 18:36:07 +0200 + +open-infrastructure-container-tools (20160415-1) unstable; urgency=low + + * Backward incompatible changes: + - container stop command option -k|--kill renamed to -f|--force for consistency + + -- Daniel Baumann Sat, 16 Apr 2016 12:34:34 +0200 diff --git a/debian/open-infrastructure-compute-tools.alternatives b/debian/open-infrastructure-compute-tools.alternatives new file mode 100644 index 0000000..5d657ca --- /dev/null +++ b/debian/open-infrastructure-compute-tools.alternatives @@ -0,0 +1,29 @@ +# build: mmdebstrap +Name: container_build-script +Link: /usr/share/compute-tools/build-scripts/default +Alternative: /usr/share/compute-tools/build-scripts/mmdebstrap +Priority: 1000 + +# build: debootstrap +Name: container_build-script +Link: /usr/share/compute-tools/build-scripts/default +Alternative: /usr/share/compute-tools/build-scripts/debootstrap +Priority: 2000 + +# build: progress-linux +Name: container_build-script +Link: /usr/share/compute-tools/build-scripts/default +Alternative: /usr/share/compute-tools/build-scripts/progress-linux +Priority: 3000 + +# build: debian +Name: container_build-script +Link: /usr/share/compute-tools/build-scripts/default +Alternative: /usr/share/compute-tools/build-scripts/debian +Priority: 4000 + +# get: curl +Name: container_get-script +Link: /usr/share/compute-tools/get-scripts/default +Alternative: /usr/share/compute-tools/get-scripts/curl +Priority: 1000 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-compute-tools.postinst b/debian/open-infrastructure-compute-tools.postinst new file mode 100755 index 0000000..492a399 --- /dev/null +++ b/debian/open-infrastructure-compute-tools.postinst @@ -0,0 +1,191 @@ +#!/bin/sh + +set -e + +CONFFILE="/etc/compute-tools/container.conf" + +Install () +{ + DEFAULT="${1}" + TARGET="${2}" + + mkdir -p "${DEFAULT}" > /dev/null 2>&1 || true + mkdir -p "${TARGET}" > /dev/null 2>&1 || true + + if [ "${TARGET}" != "${DEFAULT}" ] + then + if [ -h "${DEFAULT}" ] + then + rm -f "${DEFAULT}" + ln -s "${TARGET}" "${DEFAULT}" + else + if [ -e "${DEFAULT}" ] && [ -z "$(ls -A ${DEFAULT})" ] + then + rmdir "${DEFAULT}" + ln -s "${TARGET}" "${DEFAULT}" + fi + fi + fi + + if ! dpkg-statoverride --list "${DEFAULT}" > /dev/null 2>&1 && + ! dpkg-statoverride --list "${TARGET}" > /dev/null 2>&1 + then + chmod ${DIRECTORY_PERMISSIONS} "${TARGET}" + chown root:root "${TARGET}" + + chmod ${DIRECTORY_PERMISSIONS} "${DEFAULT}" + chown root:root "${DEFAULT}" + fi +} + +Upgrade () +{ + # upgrade from buster: conffile + if [ -e /etc/open-infrastructure/container.conf ] && [ ! -e "${CONFFILE}" ] + then + mv /etc/open-infrastructure/container.conf "${CONFFILE}" + rmdir /etc/open-infrastructure > /dev/null 2>&1 || true + fi + + # upgrade from buster: hooks + for HOOK in ${HOOKS}/* + do + NAME="$(basename ${HOOK})" + TARGET="$(readlink -m ${HOOK})" + + case "${TARGET}" in + /usr/share/open-infrastructure/container/hooks/pre-create.git-pull.sh) + rm -f "${HOOKS}/${NAME}" + ln -sf /usr/share/compute-tools/hooks/pre-get.git-pull.sh "${HOOKS}/pre-get.git-pull.sh" + ln -sf /usr/share/compute-tools/hooks/pre-build.git-pull.sh "${HOOKS}/pre-build.git-pull.sh" + ;; + + /usr/share/open-infrastructure/container/hooks/*) + ln -sf "$(echo ${TARGET} | sed -e 's|/usr/share/open-infrastructure/container/hooks/|/usr/share/compute-tools/hooks/|')" "${HOOKS}/${NAME}" + ;; + + *) + if [ -e "/usr/share/compute-tools/hooks/${NAME}" ] + then + rm -f "${HOOKS}/${NAME}" + ln -sf "/usr/share/compute-tools/hooks/${NAME}" "${HOOKS}/${NAME}" + fi + ;; + esac + done + + # upgrade from buster: keys + if [ -e /etc/open-infrastructure/container/keys ] + then + mv /etc/open-infrastructure/container/keys/* "${KEYS}" > /dev/null 2>&1 || true + rmdir /etc/open-infrastructure/container/keys > /dev/null 2>&1 || true + rm -f /etc/open-infrastructure/container/keys > /dev/null 2>&1 || true + rmdir -p /etc/open-infrastructure/container > /dev/null 2>&1 || true + fi + + # upgrade from buster: logfiles + if ls /var/log/open-infrastructure/container.log* > /dev/null 2>&1 + then + if [ -e /var/log/compute-tools ] + then + mv /var/log/open-infrastructure/* /var/log/compute-tools 2>&1 || true + rmdir /var/log/open-infrastructure > /dev/null 2>&1 || true + else + mv /var/log/open-infrastructure /var/log/compute-tools + fi + fi +} + +case "${1}" in + configure) + . /usr/share/debconf/confmodule + + db_get open-infrastructure-compute-tools/machines-directory + MACHINES_DIRECTORY="${RET:-/var/lib/machines}" # string (w/o empty) + + db_get open-infrastructure-compute-tools/config-directory + CONFIG_DIRECTORY="${RET:-/etc/compute-tools/config}" # string (w/o empty) + + db_get open-infrastructure-compute-tools/debconf-directory + DEBCONF_DIRECTORY="${RET:-/etc/compute-tools/debconf}" # string (w/o empty) + + db_get open-infrastructure-compute-tools/hooks-directory + HOOKS_DIRECTORY="${RET:-/etc/compute-tools/hooks}" # string (w/o empty) + + db_get open-infrastructure-compute-tools/keys-directory + KEYS_DIRECTORY="${RET:-/etc/compute-tools/keys}" # string (w/o empty) + + db_get open-infrastructure-compute-tools/cache-directory + CACHE_DIRECTORY="${RET:-/var/cache/container}" # string (w/o empty) + + db_get open-infrastructure-compute-tools/directory-permissions + DIRECTORY_PERMISSIONS="${RET}" # select (w/o empty) + + db_get open-infrastructure-compute-tools/build-script + SCRIPT="${RET:-debian}" # string (w/o empty) + + db_get open-infrastructure-compute-tools/irc + IRK_TARGETS="${RET}" # string (w/ empty) + + db_stop + + Install "/var/lib/machines" "${MACHINES_DIRECTORY}" + Install "/etc/compute-tools/config" "${CONFIG_DIRECTORY}" + Install "/etc/compute-tools/debconf" "${DEBCONF_DIRECTORY}" + Install "/etc/compute-tools/hooks" "${HOOKS_DIRECTORY}" + Install "/etc/compute-tools/keys" "${KEYS_DIRECTORY}" + Install "/var/cache/container" "${CACHE_DIRECTORY}" + + Upgrade + + if [ ! -e "${CONFFILE}" ] + then + +cat > "${CONFFILE}" << EOF +# ${CONFFILE} + +IRK_TARGETS="${IRK_TARGETS}" +EOF + + fi + + cp -a -f "${CONFFILE}" "${CONFFILE}.tmp" + + # If the admin deleted or commented some variables but then set + # them via debconf, (re-)add them to the config file. + + test -z "${IRK_TARGETS}" || \ + grep -Eq '^ *IRK_TARGETS=' "${CONFFILE}" || \ + echo "IRK_TARGETS=" >> "${CONFFILE}" + + sed -e "s|^ *IRK_TARGETS=.*|IRK_TARGETS=\"${IRK_TARGETS}\"|" \ + < "${CONFFILE}" > "${CONFFILE}.tmp" + + mv -f "${CONFFILE}.tmp" "${CONFFILE}" + + if command -v sysctl > /dev/null 2>&1 + then + sysctl -q -p /etc/sysctl.d/zz-container.conf + fi + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`${1}'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +case "${1}" in + configure) + # run after debhelper update-alternative scripts + update-alternatives --quiet --set container_build-script "/usr/share/compute-tools/build-scripts/${SCRIPT}" + ;; +esac + +exit 0 diff --git a/debian/open-infrastructure-compute-tools.postrm b/debian/open-infrastructure-compute-tools.postrm new file mode 100755 index 0000000..6724b94 --- /dev/null +++ b/debian/open-infrastructure-compute-tools.postrm @@ -0,0 +1,57 @@ +#!/bin/sh + +set -e + +Remove () +{ + DEFAULT="${1}" + + if [ -h "${DEFAULT}" ] + then + TARGET="$(readlink -f ${DEFAULT})" + else + TARGET="" + fi + + for ITEM in ${DEFAULT} ${TARGET} + do + if dpkg-statoverride --list "${ITEM}" > /dev/null 2>&1 + then + dpkg-statoverride --quiet --remove "${ITEM}" + fi + + rmdir --ignore-fail-on-non-empty --parents ${ITEM} > /dev/null 2>&1 || true + + rm -f ${ITEM} > /dev/null 2>&1 || true + rmdir --ignore-fail-on-non-empty --parents $(dirname ${ITEM}) > /dev/null 2>&1 || true + done +} + +case "${1}" in + remove) + Remove /var/cache/container + Remove /etc/compute-tools/debconf + Remove /etc/compute-tools/config + Remove /etc/compute-tools/hooks + Remove /etc/compute-tools/keys + Remove /etc/needrestart/restart.d + Remove /var/lib/machines + ;; + + purge) + rm -f /etc/compute-tools/container.conf + ;; + + upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + + ;; + + *) + echo "postrm called with unknown argument \`${1}'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 diff --git a/debian/open-infrastructure-compute-tools.templates b/debian/open-infrastructure-compute-tools.templates new file mode 100644 index 0000000..be1a43e --- /dev/null +++ b/debian/open-infrastructure-compute-tools.templates @@ -0,0 +1,99 @@ +Template: open-infrastructure-compute-tools/title +Type: title +_Description: compute-tools: Setup + +Template: open-infrastructure-compute-tools/machines-directory +Type: string +Default: /var/lib/machines +_Description: machines directory: + Please specify the directory that will be used to store the containers. + . + If unsure, use /var/lib/machines (default) or /srv/container/system when + using shared storage. + +Template: open-infrastructure-compute-tools/config-directory +Type: string +Default: /etc/compute-tools/config +_Description: config directory: + Please specify the directory that will be used to store the container + configuration files. + . + If unsure, use /etc/compute-tools/config (default) or + /srv/container/config when using shared storage. + +Template: open-infrastructure-compute-tools/debconf-directory +Type: string +Default: /etc/compute-tools/debconf +_Description: debconf directory: + Please specify the directory that will be used to store the container + preseed files. + . + If unsure, use /etc/compute-tools/debconf (default) or + /srv/container/debconf when using shared storage. + +Template: open-infrastructure-compute-tools/hooks-directory +Type: string +Default: /etc/compute-tools/hooks +_Description: hooks directory: + Please specify the directory that will be used to store the container + hooks. + . + If unsure, use /etc/compute-tools/hooks (default) or /srv/container/hooks + when using shared storage. + +Template: open-infrastructure-compute-tools/keys-directory +Type: string +Default: /etc/compute-tools/keys +_Description: keys directory: + Please specify the directory that will be used to store the container keys + for verifying container image downloads. + . + If unsure, use /etc/compute-tools/keys (default) or /srv/container/keys + when using shared storage. + +Template: open-infrastructure-compute-tools/cache-directory +Type: string +Default: /var/cache/container +_Description: cache directory: + Please specify the directory that will be used to cache files during + creation of containers. + . + If unsure, use /var/cache/container (default) or /srv/container/cache when + using shared storage. + +Template: open-infrastructure-compute-tools/directory-permissions +Type: select +Choices-C: 0700, 0755 +Choices: root-only, read-only +Default: root-only +_Description: Do you want system-wide readable container directories? + By default, the machines directory (and a few non-critical additional + directories such as 'cache' and 'config') is only readable by the root + user. If you want any user to be able to see what machines are available, + you can select read-only instead of root-only (default). + . + If unsure, leave at root-only (default). + +Template: open-infrastructure-compute-tools/build-script +Type: select +Choices: ${SCRIPT_CHOICES} +Default: debian +_Description: default build script: + Please select the script that will be used by default to create + containers. + . + If unsure, use debian (default). + +Template: open-infrastructure-compute-tools/irc +Type: string +Default: +_Description: IRC notifications: + The container command can send IRC notifications via irker to one or more + (whitespace separated) IRC channels. + . + The following example will send IRC notifications to the + open-infrastructure channel on irc.oftc.net: + . + irc://irc.oftc.net:6668/open-infrastructure + . + If unsure, leave empty (default). diff --git a/debian/open-infrastructure-container-tools.NEWS b/debian/open-infrastructure-container-tools.NEWS deleted file mode 100644 index 7927358..0000000 --- a/debian/open-infrastructure-container-tools.NEWS +++ /dev/null @@ -1,184 +0,0 @@ -open-infrastructure-compute-tools (20210726-1) experimental; urgency=medium - - * Backward incompatible changes: - - The container create command has been renamed to 'build'. - - The container create script using curl is now a 'get' script - for the new container get command. - - -- Daniel Baumann Mon, 26 Jul 2021 06:10:41 +0200 - -open-infrastructure-compute-tools (20210630-1) experimental; urgency=medium - - * Backward incompatible changes: - - Reverting openvswitch, not really ready yet. - - -- Daniel Baumann Tue, 29 Jun 2021 14:17:55 +0200 - -open-infrastructure-compute-tools (20210629-1) experimental; urgency=medium - - * Backward incompatible changes: - - The networking integration on the container host depended on - ifupdown. Now, to support KVM as an additional backend - alongside systemd-nspawn in compute-tools, we're switching - in this version exclusively to openvswitch. - - Moving from ifupdown to openvswitch to manage the bridges - requires manual re-configuration of the networking stack on - the host, otherwise no container will continue to have network - access. - - Configuration examples for systemd-networkd (recommended) on the - host to use openvswitch are documented in - /usr/share/doc/compute-tools/HOST-SETUP.txt. - - -- Daniel Baumann Tue, 29 Jun 2021 14:12:57 +0200 - -open-infrastructure-compute-tools (20210411-1) experimental; urgency=medium - - * Backward incompatible changes: - - all path have been shortened in preparation for additional - backends alongside systemd-nspawn: The only user visible is the - configuration directory: - - new: /etc/open-infrastructure/container - old: /etc/compute-tools - - -- Daniel Baumann Sun, 11 Apr 2021 15:54:06 +0200 - -open-infrastructure-compute-tools (20190319-1) experimental; urgency=medium - - * Backward incompatible changes: - - with the initial support for IPv6 network configuration - the IPv4 netmask now needs to be specified in CIDR - notation, e.g. '255.255.255.0' becomes '24'. - - -- Daniel Baumann Tue, 19 Mar 2019 21:01:07 +0100 - -open-infrastructure-compute-tools (20190222-1) unstable; urgency=medium - - * Backward incompatible changes: - - replaced Progress Linux 4 and Progress Linux 4+ support in - container debconf create script in favour of Progress Linux 5 - and Progress Linux 5+ support. - - - renamed upstream from container-tools to compute-tools, - directory names have changed. The only user visible is the - configuration directory: - - old: /etc/container-tools - new: /etc/open-infrastructure/container - - - harmonized field names in container debconf create script: - - old: container-tools cnt-debconf/[...] - new: compute-tools container/[...] - - See updated example files in /usr/share/doc/open-infrastructure-container-tools/examples. - - -- Daniel Baumann Sun, 17 Feb 2019 18:41:42 +0100 - -open-infrastructure-container-tools (20170722-1) unstable; urgency=low - - * Backward incompatible changes: - - new default URL to download images in curl create script (files.open-infrastructure.net) - - new default for bridge interface (bridge0 instead of br0) - - new default for container interface (eno1 instead of eth0) - - renaming --image option to --system in curl container create script - - renaming curl image cache directory from /var/cache/container-tools/images to /var/cache/container-tools/system - - Starting to count at 1 instead of 0 in preseed files: - - old: container-tools cnt-debconf/archive0/... - new: container-tools cnt-debconf/archive1/... - - old: container-tools cnt-debconf/network0/... - new: container-tools cnt-debconf/network1/... - - -- Daniel Baumann Sun, 23 Jul 2017 10:31:48 +0200 - -open-infrastructure-container-tools (20170629-1) unstable; urgency=low - - * Backward incompatible changes: - - container auto configuration in the [start] section to - entangle shared storage/automatically start at boot time - support: - - old: cnt.auto=true - - new: cnt.auto=true - cnt.container-server=${FQDN} - - whereas ${FQDN} needs to be replaced with the actual hostname - of the container server. - - -- Daniel Baumann Thu, 29 Jun 2017 11:23:15 +0200 - -open-infrastructure-container-tools (20161210-1) experimental; urgency=low - - * Backward incompatible changes: - - container list shows now only the first IPv4 address. - - container rename command has been renamed to move. - - container list full format has been renamed to cli. - - container list short format has been renamed to shell. - - -- Daniel Baumann Sun, 11 Dec 2016 13:35:40 +0100 - -open-infrastructure-container-tools (20161122-1) experimental; urgency=low - - * Backward incompatible changes: - - renaming curl cache directory from /var/cache/container-tools/curl to - /var/cache/container-tools/images. - - -- Daniel Baumann Tue, 22 Nov 2016 16:10:38 +0100 - -open-infrastructure-container-tools (20161112-1) experimental; urgency=low - - * Backward incompatible changes: - - removes support to create Debian 8 (jessie) container in debconf container - create script. - - -- Daniel Baumann Sat, 12 Nov 2016 08:52:48 +0100 - -open-infrastructure-container-tools (20161105-1) experimental; urgency=low - - * Backward incompatible changes: - - container use systemd-networkd instead of ifupdown. - - -- Daniel Baumann Sun, 06 Nov 2016 09:45:19 +0100 - -open-infrastructure-container-tools (20160601-1) unstable; urgency=low - - * Backward incompatible changes: - - for consistency reasons, instead of any file only files - with .cfg suffix are accepted as preseed files in - /etc/container-tools/debconf. - - -- Daniel Baumann Wed, 01 Jun 2016 16:00:50 +0200 - -open-infrastructure-container-tools (20160515-1) unstable; urgency=low - - * Backward incompatible changes: - - container network configuration in the [start] section for - multi-interface support: - - old: network-veth=yes - network-bridge=br0 - - new: cnt.network-bridge=veth-foo:br0 - network-veth-extra=veth-foo:eth0 - cnt.network-bridge=veth-bar:br1 - network-veth-extra=veth-bar:eth1 - - - default container network device switched from host0 to eth0. - - container start in background by default. - - container-autostart has been renamed to container-auto. - - container autostart configuration in the [start] section: - - old: cnt.autostart=true|FQDN - new: cnt.auto=true|FQDN - - -- Daniel Baumann Wed, 18 May 2016 18:36:07 +0200 - -open-infrastructure-container-tools (20160415-1) unstable; urgency=low - - * Backward incompatible changes: - - container stop command option -k|--kill renamed to -f|--force for consistency - - -- Daniel Baumann Sat, 16 Apr 2016 12:34:34 +0200 diff --git a/debian/open-infrastructure-container-tools.alternatives b/debian/open-infrastructure-container-tools.alternatives deleted file mode 100644 index 5d657ca..0000000 --- a/debian/open-infrastructure-container-tools.alternatives +++ /dev/null @@ -1,29 +0,0 @@ -# build: mmdebstrap -Name: container_build-script -Link: /usr/share/compute-tools/build-scripts/default -Alternative: /usr/share/compute-tools/build-scripts/mmdebstrap -Priority: 1000 - -# build: debootstrap -Name: container_build-script -Link: /usr/share/compute-tools/build-scripts/default -Alternative: /usr/share/compute-tools/build-scripts/debootstrap -Priority: 2000 - -# build: progress-linux -Name: container_build-script -Link: /usr/share/compute-tools/build-scripts/default -Alternative: /usr/share/compute-tools/build-scripts/progress-linux -Priority: 3000 - -# build: debian -Name: container_build-script -Link: /usr/share/compute-tools/build-scripts/default -Alternative: /usr/share/compute-tools/build-scripts/debian -Priority: 4000 - -# get: curl -Name: container_get-script -Link: /usr/share/compute-tools/get-scripts/default -Alternative: /usr/share/compute-tools/get-scripts/curl -Priority: 1000 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/open-infrastructure-container-tools.postinst b/debian/open-infrastructure-container-tools.postinst deleted file mode 100755 index 02dd0ff..0000000 --- a/debian/open-infrastructure-container-tools.postinst +++ /dev/null @@ -1,191 +0,0 @@ -#!/bin/sh - -set -e - -CONFFILE="/etc/compute-tools/container.conf" - -Install () -{ - DEFAULT="${1}" - TARGET="${2}" - - mkdir -p "${DEFAULT}" > /dev/null 2>&1 || true - mkdir -p "${TARGET}" > /dev/null 2>&1 || true - - if [ "${TARGET}" != "${DEFAULT}" ] - then - if [ -h "${DEFAULT}" ] - then - rm -f "${DEFAULT}" - ln -s "${TARGET}" "${DEFAULT}" - else - if [ -e "${DEFAULT}" ] && [ -z "$(ls -A ${DEFAULT})" ] - then - rmdir "${DEFAULT}" - ln -s "${TARGET}" "${DEFAULT}" - fi - fi - fi - - if ! dpkg-statoverride --list "${DEFAULT}" > /dev/null 2>&1 && - ! dpkg-statoverride --list "${TARGET}" > /dev/null 2>&1 - then - chmod ${DIRECTORY_PERMISSIONS} "${TARGET}" - chown root:root "${TARGET}" - - chmod ${DIRECTORY_PERMISSIONS} "${DEFAULT}" - chown root:root "${DEFAULT}" - fi -} - -Upgrade () -{ - # upgrade from buster: conffile - if [ -e /etc/open-infrastructure/container.conf ] && [ ! -e "${CONFFILE}" ] - then - mv /etc/open-infrastructure/container.conf "${CONFFILE}" - rmdir /etc/open-infrastructure > /dev/null 2>&1 || true - fi - - # upgrade from buster: hooks - for HOOK in ${HOOKS}/* - do - NAME="$(basename ${HOOK})" - TARGET="$(readlink -m ${HOOK})" - - case "${TARGET}" in - /usr/share/open-infrastructure/container/hooks/pre-create.git-pull.sh) - rm -f "${HOOKS}/${NAME}" - ln -sf /usr/share/compute-tools/hooks/pre-get.git-pull.sh "${HOOKS}/pre-get.git-pull.sh" - ln -sf /usr/share/compute-tools/hooks/pre-build.git-pull.sh "${HOOKS}/pre-build.git-pull.sh" - ;; - - /usr/share/open-infrastructure/container/hooks/*) - ln -sf "$(echo ${TARGET} | sed -e 's|/usr/share/open-infrastructure/container/hooks/|/usr/share/compute-tools/hooks/|')" "${HOOKS}/${NAME}" - ;; - - *) - if [ -e "/usr/share/compute-tools/hooks/${NAME}" ] - then - rm -f "${HOOKS}/${NAME}" - ln -sf "/usr/share/compute-tools/hooks/${NAME}" "${HOOKS}/${NAME}" - fi - ;; - esac - done - - # upgrade from buster: keys - if [ -e /etc/open-infrastructure/container/keys ] - then - mv /etc/open-infrastructure/container/keys/* "${KEYS}" > /dev/null 2>&1 || true - rmdir /etc/open-infrastructure/container/keys > /dev/null 2>&1 || true - rm -f /etc/open-infrastructure/container/keys > /dev/null 2>&1 || true - rmdir -p /etc/open-infrastructure/container > /dev/null 2>&1 || true - fi - - # upgrade from buster: logfiles - if ls /var/log/open-infrastructure/container.log* > /dev/null 2>&1 - then - if [ -e /var/log/compute-tools ] - then - mv /var/log/open-infrastructure/* /var/log/compute-tools 2>&1 || true - rmdir /var/log/open-infrastructure > /dev/null 2>&1 || true - else - mv /var/log/open-infrastructure /var/log/compute-tools - fi - fi -} - -case "${1}" in - configure) - . /usr/share/debconf/confmodule - - db_get open-infrastructure-container-tools/machines-directory - MACHINES_DIRECTORY="${RET:-/var/lib/machines}" # string (w/o empty) - - db_get open-infrastructure-container-tools/config-directory - CONFIG_DIRECTORY="${RET:-/etc/compute-tools/config}" # string (w/o empty) - - db_get open-infrastructure-container-tools/debconf-directory - DEBCONF_DIRECTORY="${RET:-/etc/compute-tools/debconf}" # string (w/o empty) - - db_get open-infrastructure-container-tools/hooks-directory - HOOKS_DIRECTORY="${RET:-/etc/compute-tools/hooks}" # string (w/o empty) - - db_get open-infrastructure-container-tools/keys-directory - KEYS_DIRECTORY="${RET:-/etc/compute-tools/keys}" # string (w/o empty) - - db_get open-infrastructure-container-tools/cache-directory - CACHE_DIRECTORY="${RET:-/var/cache/container}" # string (w/o empty) - - db_get open-infrastructure-container-tools/directory-permissions - DIRECTORY_PERMISSIONS="${RET}" # select (w/o empty) - - db_get open-infrastructure-container-tools/build-script - SCRIPT="${RET:-debian}" # string (w/o empty) - - db_get open-infrastructure-container-tools/irc - IRK_TARGETS="${RET}" # string (w/ empty) - - db_stop - - Install "/var/lib/machines" "${MACHINES_DIRECTORY}" - Install "/etc/compute-tools/config" "${CONFIG_DIRECTORY}" - Install "/etc/compute-tools/debconf" "${DEBCONF_DIRECTORY}" - Install "/etc/compute-tools/hooks" "${HOOKS_DIRECTORY}" - Install "/etc/compute-tools/keys" "${KEYS_DIRECTORY}" - Install "/var/cache/container" "${CACHE_DIRECTORY}" - - Upgrade - - if [ ! -e "${CONFFILE}" ] - then - -cat > "${CONFFILE}" << EOF -# ${CONFFILE} - -IRK_TARGETS="${IRK_TARGETS}" -EOF - - fi - - cp -a -f "${CONFFILE}" "${CONFFILE}.tmp" - - # If the admin deleted or commented some variables but then set - # them via debconf, (re-)add them to the config file. - - test -z "${IRK_TARGETS}" || \ - grep -Eq '^ *IRK_TARGETS=' "${CONFFILE}" || \ - echo "IRK_TARGETS=" >> "${CONFFILE}" - - sed -e "s|^ *IRK_TARGETS=.*|IRK_TARGETS=\"${IRK_TARGETS}\"|" \ - < "${CONFFILE}" > "${CONFFILE}.tmp" - - mv -f "${CONFFILE}.tmp" "${CONFFILE}" - - if command -v sysctl > /dev/null 2>&1 - then - sysctl -q -p /etc/sysctl.d/zz-container.conf - fi - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`${1}'" >&2 - exit 1 - ;; -esac - -#DEBHELPER# - -case "${1}" in - configure) - # run after debhelper update-alternative scripts - update-alternatives --quiet --set container_build-script "/usr/share/compute-tools/build-scripts/${SCRIPT}" - ;; -esac - -exit 0 diff --git a/debian/open-infrastructure-container-tools.postrm b/debian/open-infrastructure-container-tools.postrm deleted file mode 100755 index 6724b94..0000000 --- a/debian/open-infrastructure-container-tools.postrm +++ /dev/null @@ -1,57 +0,0 @@ -#!/bin/sh - -set -e - -Remove () -{ - DEFAULT="${1}" - - if [ -h "${DEFAULT}" ] - then - TARGET="$(readlink -f ${DEFAULT})" - else - TARGET="" - fi - - for ITEM in ${DEFAULT} ${TARGET} - do - if dpkg-statoverride --list "${ITEM}" > /dev/null 2>&1 - then - dpkg-statoverride --quiet --remove "${ITEM}" - fi - - rmdir --ignore-fail-on-non-empty --parents ${ITEM} > /dev/null 2>&1 || true - - rm -f ${ITEM} > /dev/null 2>&1 || true - rmdir --ignore-fail-on-non-empty --parents $(dirname ${ITEM}) > /dev/null 2>&1 || true - done -} - -case "${1}" in - remove) - Remove /var/cache/container - Remove /etc/compute-tools/debconf - Remove /etc/compute-tools/config - Remove /etc/compute-tools/hooks - Remove /etc/compute-tools/keys - Remove /etc/needrestart/restart.d - Remove /var/lib/machines - ;; - - purge) - rm -f /etc/compute-tools/container.conf - ;; - - upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) - - ;; - - *) - echo "postrm called with unknown argument \`${1}'" >&2 - exit 1 - ;; -esac - -#DEBHELPER# - -exit 0 diff --git a/debian/open-infrastructure-container-tools.templates b/debian/open-infrastructure-container-tools.templates deleted file mode 100644 index 3362b5f..0000000 --- a/debian/open-infrastructure-container-tools.templates +++ /dev/null @@ -1,99 +0,0 @@ -Template: open-infrastructure-container-tools/title -Type: title -_Description: container-tools: Setup - -Template: open-infrastructure-container-tools/machines-directory -Type: string -Default: /var/lib/machines -_Description: machines directory: - Please specify the directory that will be used to store the containers. - . - If unsure, use /var/lib/machines (default) or /srv/container/system when - using shared storage. - -Template: open-infrastructure-container-tools/config-directory -Type: string -Default: /etc/compute-tools/config -_Description: config directory: - Please specify the directory that will be used to store the container - configuration files. - . - If unsure, use /etc/compute-tools/config (default) or - /srv/container/config when using shared storage. - -Template: open-infrastructure-container-tools/debconf-directory -Type: string -Default: /etc/compute-tools/debconf -_Description: debconf directory: - Please specify the directory that will be used to store the container - preseed files. - . - If unsure, use /etc/compute-tools/debconf (default) or - /srv/container/debconf when using shared storage. - -Template: open-infrastructure-container-tools/hooks-directory -Type: string -Default: /etc/compute-tools/hooks -_Description: hooks directory: - Please specify the directory that will be used to store the container - hooks. - . - If unsure, use /etc/compute-tools/hooks (default) or /srv/container/hooks - when using shared storage. - -Template: open-infrastructure-container-tools/keys-directory -Type: string -Default: /etc/compute-tools/keys -_Description: keys directory: - Please specify the directory that will be used to store the container keys - for verifying container image downloads. - . - If unsure, use /etc/compute-tools/keys (default) or /srv/container/keys - when using shared storage. - -Template: open-infrastructure-container-tools/cache-directory -Type: string -Default: /var/cache/container -_Description: cache directory: - Please specify the directory that will be used to cache files during - creation of containers. - . - If unsure, use /var/cache/container (default) or /srv/container/cache when - using shared storage. - -Template: open-infrastructure-container-tools/directory-permissions -Type: select -Choices-C: 0700, 0755 -Choices: root-only, read-only -Default: root-only -_Description: Do you want system-wide readable container directories? - By default, the machines directory (and a few non-critical additional - directories such as 'cache' and 'config') is only readable by the root - user. If you want any user to be able to see what machines are available, - you can select read-only instead of root-only (default). - . - If unsure, leave at root-only (default). - -Template: open-infrastructure-container-tools/build-script -Type: select -Choices: ${SCRIPT_CHOICES} -Default: debian -_Description: default build script: - Please select the script that will be used by default to create - containers. - . - If unsure, use debian (default). - -Template: open-infrastructure-container-tools/irc -Type: string -Default: -_Description: IRC notifications: - The container command can send IRC notifications via irker to one or more - (whitespace separated) IRC channels. - . - The following example will send IRC notifications to the - open-infrastructure channel on irc.oftc.net: - . - irc://irc.oftc.net:6668/open-infrastructure - . - If unsure, leave empty (default). 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 -# 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 -# 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 -# 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 -# 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 -# 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 -# 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 -# 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 ${@} -- cgit v1.2.3