From 2d29ea9c7c99fb87593eac3bb53b9f144767d5fc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 Feb 2023 12:31:14 +0100 Subject: Renaming ceph-tools to storage-tools to avoid future NEW processing for adding additional tools. Signed-off-by: Daniel Baumann --- debian/control | 22 ++-- debian/open-infrastructure-ceph-tools.NEWS | 9 -- debian/open-infrastructure-ceph-tools.config | 68 ---------- ...pen-infrastructure-ceph-tools.lintian-overrides | 2 - debian/open-infrastructure-ceph-tools.postinst | 139 --------------------- debian/open-infrastructure-ceph-tools.postrm | 22 ---- debian/open-infrastructure-ceph-tools.templates | 105 ---------------- debian/open-infrastructure-storage-tools.NEWS | 9 ++ debian/open-infrastructure-storage-tools.config | 68 ++++++++++ ...-infrastructure-storage-tools.lintian-overrides | 2 + debian/open-infrastructure-storage-tools.postinst | 139 +++++++++++++++++++++ debian/open-infrastructure-storage-tools.postrm | 22 ++++ debian/open-infrastructure-storage-tools.templates | 105 ++++++++++++++++ debian/po/POTFILES.in | 2 +- debian/po/de.po | 90 ++++++------- debian/po/es.po | 90 ++++++------- debian/po/fr.po | 88 ++++++------- debian/po/nl.po | 90 ++++++------- debian/po/pt.po | 90 ++++++------- debian/po/pt_BR.po | 90 ++++++------- debian/po/ru.po | 90 ++++++------- debian/po/templates.pot | 88 ++++++------- debian/rules | 4 +- debian/source.lintian-overrides | 2 +- 24 files changed, 718 insertions(+), 718 deletions(-) delete mode 100644 debian/open-infrastructure-ceph-tools.NEWS delete mode 100644 debian/open-infrastructure-ceph-tools.config delete mode 100644 debian/open-infrastructure-ceph-tools.lintian-overrides delete mode 100755 debian/open-infrastructure-ceph-tools.postinst delete mode 100755 debian/open-infrastructure-ceph-tools.postrm delete mode 100644 debian/open-infrastructure-ceph-tools.templates create mode 100644 debian/open-infrastructure-storage-tools.NEWS create mode 100644 debian/open-infrastructure-storage-tools.config create mode 100644 debian/open-infrastructure-storage-tools.lintian-overrides create mode 100755 debian/open-infrastructure-storage-tools.postinst create mode 100755 debian/open-infrastructure-storage-tools.postrm create mode 100644 debian/open-infrastructure-storage-tools.templates diff --git a/debian/control b/debian/control index f35011e..4a58f0b 100644 --- a/debian/control +++ b/debian/control @@ -16,7 +16,7 @@ Homepage: https://open-infrastructure.net/software/storage-tools Vcs-Browser: https://git.progress-linux.org/users/daniel.baumann/debian/packages/open-infrastructure-storage-tools Vcs-Git: https://git.progress-linux.org/users/daniel.baumann/debian/packages/open-infrastructure-storage-tools -Package: open-infrastructure-ceph-tools +Package: open-infrastructure-storage-tools Section: admin Architecture: all Depends: @@ -37,29 +37,29 @@ Suggests: # cephfs-snap irker, Provides: - ceph-tools, + storage-tools, Enhances: ceph, Breaks: - open-infrastructure-storage-tools (<< 20180915-2~), + open-infrastructure-ceph-tools (<< 20190301-lts1-3~), Replaces: - open-infrastructure-storage-tools, + open-infrastructure-ceph-tools, Description: Additional utilities to manage Ceph - ceph-tools contains the following tools: + storage-tools contains the following tools: . * ceph-log: store Ceph cluster log as a logfile * ceph-info: show Ceph cluster information as a HTML page * cephfs-snap: create CephFS snapshots periodically * cephfs-remove-osd: remove a Ceph OSD instance completely -Package: open-infrastructure-storage-tools +Package: open-infrastructure-ceph-tools Architecture: all Depends: - open-infrastructure-ceph-tools (= ${source:Version}), + open-infrastructure-storage-tools (= ${source:Version}), ${misc:Depends}, Description: Additional utilities to manage Ceph (transitional package) - Package to ease upgrading from older open-infrastructure-storage-tools package - to the new open-infrastructure-ceph-tools package. + Package to ease upgrading from older open-infrastructure-ceph-tools package + to the new open-infrastructure-storage-tools package. . - This package can be purged at anytime once the open-infrastructure-ceph-tools - package has been installed. + This package can be purged at anytime once the + open-infrastructure-storage-tools package has been installed. diff --git a/debian/open-infrastructure-ceph-tools.NEWS b/debian/open-infrastructure-ceph-tools.NEWS deleted file mode 100644 index b11e2ca..0000000 --- a/debian/open-infrastructure-ceph-tools.NEWS +++ /dev/null @@ -1,9 +0,0 @@ -open-infrastructure-storage-tools (20170410-1) unstable; urgency=low - - * Backward incompatible changes: - - cephfs-snap changed name of snapshots: - + old: ${TYPE}_${YEAR}-${MONTH}-${DAY}_${HOUR}${MINUTES}${TIMEZONE} - + new: ${YEAR}-${MONTH}-${DAY}_${HOUR}${MINUTES}${SECONDS}${TIMEZONE}_${TYPE} - - cephfs-snap changed logfile location, now in /var/log/storage-tools/cephfs-snap/cephfs-snap.log - - -- Daniel Baumann Tue, 11 Apr 2017 00:20:17 +0200 diff --git a/debian/open-infrastructure-ceph-tools.config b/debian/open-infrastructure-ceph-tools.config deleted file mode 100644 index be20cbc..0000000 --- a/debian/open-infrastructure-ceph-tools.config +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/sh - -set -e - -CONFFILE="/etc/open-infrastructure/ceph-tools.conf" - -. /usr/share/debconf/confmodule - -if [ -e "${CONFFILE}" ] -then - . ${CONFFILE} || true - - db_set open-infrastructure-ceph-tools/ceph-log "${CEPH_LOG}" - db_set open-infrastructure-ceph-tools/ceph-info "${CEPH_INFO}" - - db_set open-infrastructure-ceph-tools/cephfs-snap "${CEPHFS_SNAP}" - db_set open-infrastructure-ceph-tools/cephfs-snap-directories "${CEPHFS_SNAP_DIRECTORIES}" - - db_set open-infrastructure-ceph-tools/cephfs-snap-hourly "${CEPHFS_SNAP_HOURLY}" - db_set open-infrastructure-ceph-tools/cephfs-snap-daily "${CEPHFS_SNAP_DAILY}" - db_set open-infrastructure-ceph-tools/cephfs-snap-weekly "${CEPHFS_SNAP_WEEKLY}" - db_set open-infrastructure-ceph-tools/cephfs-snap-monthly "${CEPHFS_SNAP_MONTHLY}" - db_set open-infrastructure-ceph-tools/cephfs-snap-yearly "${CEPHFS_SNAP_YEARLY}" - - db_set open-infrastructure-ceph-tools/irc "${IRK_TARGETS}" -fi - -db_settitle open-infrastructure-ceph-tools/title -db_input low open-infrastructure-ceph-tools/ceph-log || true -db_go - -db_settitle open-infrastructure-ceph-tools/title -db_input low open-infrastructure-ceph-tools/ceph-info || true -db_go - -db_settitle open-infrastructure-ceph-tools/title -db_input low open-infrastructure-ceph-tools/cephfs-snap || true -db_go - -db_settitle open-infrastructure-ceph-tools/title -db_input low open-infrastructure-ceph-tools/cephfs-snap-directories || true -db_go - -db_settitle open-infrastructure-ceph-tools/title -db_input low open-infrastructure-ceph-tools/cephfs-snap-hourly || true -db_go - -db_settitle open-infrastructure-ceph-tools/title -db_input low open-infrastructure-ceph-tools/cephfs-snap-daily || true -db_go - -db_settitle open-infrastructure-ceph-tools/title -db_input low open-infrastructure-ceph-tools/cephfs-snap-weekly || true -db_go - -db_settitle open-infrastructure-ceph-tools/title -db_input low open-infrastructure-ceph-tools/cephfs-snap-monthly || true -db_go - -db_settitle open-infrastructure-ceph-tools/title -db_input low open-infrastructure-ceph-tools/cephfs-snap-yearly || true -db_go - -db_settitle open-infrastructure-ceph-tools/title -db_input low open-infrastructure-ceph-tools/irc || true -db_go - -db_stop diff --git a/debian/open-infrastructure-ceph-tools.lintian-overrides b/debian/open-infrastructure-ceph-tools.lintian-overrides deleted file mode 100644 index b503980..0000000 --- a/debian/open-infrastructure-ceph-tools.lintian-overrides +++ /dev/null @@ -1,2 +0,0 @@ -# configuration file follows name of the tool -open-infrastructure-ceph-tools: non-standard-apache2-configuration-name diff --git a/debian/open-infrastructure-ceph-tools.postinst b/debian/open-infrastructure-ceph-tools.postinst deleted file mode 100755 index 6b7e464..0000000 --- a/debian/open-infrastructure-ceph-tools.postinst +++ /dev/null @@ -1,139 +0,0 @@ -#!/bin/sh - -set -e - -CONFFILE="/etc/open-infrastructure/ceph-tools.conf" - -case "${1}" in - configure) - . /usr/share/debconf/confmodule - - db_get open-infrastructure-ceph-tools/ceph-log - CEPH_LOG="${RET}" # boolean - - db_get open-infrastructure-ceph-tools/ceph-info - CEPH_INFO="${RET}" # boolean - - db_get open-infrastructure-ceph-tools/cephfs-snap - CEPHFS_SNAP="${RET}" # boolean - - db_get open-infrastructure-ceph-tools/cephfs-snap-directories - CEPHFS_SNAP_DIRECTORIES="${RET}" # string (w/ empty) - - db_get open-infrastructure-ceph-tools/cephfs-snap-hourly - CEPHFS_SNAP_HOURLY="${RET}" # string (w/ empty) - - db_get open-infrastructure-ceph-tools/cephfs-snap-daily - CEPHFS_SNAP_DAILY="${RET}" # string (w/ empty) - - db_get open-infrastructure-ceph-tools/cephfs-snap-weekly - CEPHFS_SNAP_WEEKLY="${RET}" # string (w/ empty) - - db_get open-infrastructure-ceph-tools/cephfs-snap-monthly - CEPHFS_SNAP_MONTHLY="${RET}" # string (w/ empty) - - db_get open-infrastructure-ceph-tools/cephfs-snap-yearly - CEPHFS_SNAP_YEARLY="${RET}" # string (w/ empty) - - db_get open-infrastructure-ceph-tools/irc - IRK_TARGETS="${RET}" # string (w/ empty) - - db_stop - - if [ ! -e "${CONFFILE}" ] - then - mkdir -p /etc/open-infrastructure - -cat > "${CONFFILE}" << EOF -# /etc/open-infrastructure/ceph-tools.conf - -CEPH_INFO="${CEPH_INFO}" -CEPH_LOG="${CEPH_LOG}" - -CEPHFS_SNAP="${CEPHFS_SNAP}" -CEPHFS_SNAP_DIRECTORIES="${CEPHFS_SNAP_DIRECTORIES}" - -CEPHFS_SNAP_HOURLY="${CEPHFS_SNAP_HOURLY}" -CEPHFS_SNAP_DAILY="${CEPHFS_SNAP_DAILY}" -CEPHFS_SNAP_WEEKLY="${CEPHFS_SNAP_WEEKLY}" -CEPHFS_SNAP_MONTHLY="${CEPHFS_SNAP_MONTHLY}" -CEPHFS_SNAP_YEARLY="${CEPHFS_SNAP_YEARLY}" - -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 "${CEPH_LOG}" || \ - grep -Eq '^ *CEPH_LOG=' "${CONFFILE}" || \ - echo "CEPH_LOG=" >> "${CONFFILE}" - - test -z "${CEPH_INFO}" || \ - grep -Eq '^ *CEPH_INFO=' "${CONFFILE}" || \ - echo "CEPH_INFO=" >> "${CONFFILE}" - - test -z "${CEPHFS_SNAP}" || \ - grep -Eq '^ *CEPHFS_SNAP=' "${CONFFILE}" || \ - echo "CEPHFS_SNAP=" >> "${CONFFILE}" - - test -z "${CEPHFS_SNAP_DIRECTORIES}" || \ - grep -Eq '^ *CEPHFS_SNAP_DIRECTORIES=' "${CONFFILE}" || \ - echo "CEPHFS_SNAP_DIRECTORIES=" >> "${CONFFILE}" - - test -z "${CEPHFS_SNAP_HOURLY}" || \ - grep -Eq '^ *CEPHFS_SNAP_HOURLY=' "${CONFFILE}" || \ - echo "CEPHFS_SNAP_HOURLY=" >> "${CONFFILE}" - - test -z "${CEPHFS_SNAP_DAILY}" || \ - grep -Eq '^ *CEPHFS_SNAP_DAILY=' "${CONFFILE}" || \ - echo "CEPHFS_SNAP_DAILY=" >> "${CONFFILE}" - - test -z "${CEPHFS_SNAP_WEEKLY}" || \ - grep -Eq '^ *CEPHFS_SNAP_WEEKLY=' "${CONFFILE}" || \ - echo "CEPHFS_SNAP_WEEKLY=" >> "${CONFFILE}" - - test -z "${CEPHFS_SNAP_MONTHLY}" || \ - grep -Eq '^ *CEPHFS_SNAP_MONTHLY=' "${CONFFILE}" || \ - echo "CEPHFS_SNAP_MONTHLY=" >> "${CONFFILE}" - - test -z "${CEPHFS_SNAP_YEARLY}" || \ - grep -Eq '^ *CEPHFS_SNAP_YEARLY=' "${CONFFILE}" || \ - echo "CEPHFS_SNAP_YEARLY=" >> "${CONFFILE}" - - test -z "${IRK_TARGETS}" || \ - grep -Eq '^ *IRK_TARGETS=' "${CONFFILE}" || \ - echo "IRK_TARGETS=" >> "${CONFFILE}" - - sed -e "s|^ *CEPH_LOG=.*|CEPH_LOG=\"${CEPH_LOG}\"|" \ - -e "s|^ *CEPH_INFO=.*|CEPH_INFO=\"${CEPH_INFO}\"|" \ - -e "s|^ *CEPHFS_SNAP=.*|CEPHFS_SNAP=\"${CEPHFS_SNAP}\"|" \ - -e "s|^ *CEPHFS_SNAP_DIRECTORIES=.*|CEPHFS_SNAP_DIRECTORIES=\"${CEPHFS_SNAP_DIRECTORIES}\"|" \ - -e "s|^ *CEPHFS_SNAP_HOURLY=.*|CEPHFS_SNAP_HOURLY=\"${CEPHFS_SNAP_HOURLY}\"|" \ - -e "s|^ *CEPHFS_SNAP_DAILY=.*|CEPHFS_SNAP_DAILY=\"${CEPHFS_SNAP_DAILY}\"|" \ - -e "s|^ *CEPHFS_SNAP_WEEKLY=.*|CEPHFS_SNAP_WEEKLY=\"${CEPHFS_SNAP_WEEKLY}\"|" \ - -e "s|^ *CEPHFS_SNAP_MONTHLY=.*|CEPHFS_SNAP_MONTHLY=\"${CEPHFS_SNAP_MONTHLY}\"|" \ - -e "s|^ *CEPHFS_SNAP_YEARLY=.*|CEPHFS_SNAP_YEARLY=\"${CEPHFS_SNAP_YEARLY}\"|" \ - -e "s|^ *IRK_TARGETS=.*|IRK_TARGETS=\"${IRK_TARGETS}\"|" \ - < "${CONFFILE}" > "${CONFFILE}.tmp" - - mv -f "${CONFFILE}.tmp" "${CONFFILE}" - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - - ;; - - *) - echo "postinst called with unknown argument \`${1}'" >&2 - exit 1 - ;; -esac - -#DEBHELPER# - -exit 0 diff --git a/debian/open-infrastructure-ceph-tools.postrm b/debian/open-infrastructure-ceph-tools.postrm deleted file mode 100755 index b714662..0000000 --- a/debian/open-infrastructure-ceph-tools.postrm +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -set -e - -case "${1}" in - purge) - rm -f /etc/open-infrastructure/ceph-tools.conf - ;; - - remove|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-ceph-tools.templates b/debian/open-infrastructure-ceph-tools.templates deleted file mode 100644 index f1fa09b..0000000 --- a/debian/open-infrastructure-ceph-tools.templates +++ /dev/null @@ -1,105 +0,0 @@ -Template: open-infrastructure-ceph-tools/title -Type: title -_Description: ceph-tools: Setup - -Template: open-infrastructure-ceph-tools/ceph-log -Type: boolean -Default: false -_Description: ceph-log: - ceph-log stores Ceph cluster log as a logfile, see ceph-log(1). - . - Should ceph-log be enabled? - -Template: open-infrastructure-ceph-tools/ceph-info -Type: boolean -Default: false -_Description: ceph-info: - ceph-info shows Ceph cluster information as a HTML page, see ceph-info(1). - . - Should ceph-info be enabled? - -Template: open-infrastructure-ceph-tools/cephfs-snap -Type: boolean -Default: false -_Description: cephfs-snap: - cephfs-snap creates CephFS snapshots periodically, see cephfs-snap(1). - . - Should cephfs-snap be enabled? - -Template: open-infrastructure-ceph-tools/cephfs-snap-directories -Type: string -_Default: -_Description: cephfs-snap directories: - Please specify the directories (space separated) where CephFS are mounted - that should be snapshoted. - . - If unsure, leave empty. - -Template: open-infrastructure-ceph-tools/cephfs-snap-hourly -Type: string -_Default: 169 -_Description: cephfs-snap hourly: - Please specify the number of hourly snapshots that should be kept. - . - Depending on the use case a reasonable default might be to keep hourly - snapshots for 1 week, means: (24 * 7) + 1 = 169 - . - If unsure, leave empty (no automatic hourly snapshot rotation). - -Template: open-infrastructure-ceph-tools/cephfs-snap-daily -Type: string -_Default: 32 -_Description: cephfs-snap daily: - Please specify the number of daily snapshots that should be kept. - . - Depending on the use case a reasonable default might be to keep daily - snapshots for 1 month, means: (31 * 1) + 1 = 32 - . - If unsure, leave empty (no automatic daily snapshot rotation). - -Template: open-infrastructure-ceph-tools/cephfs-snap-weekly -Type: string -_Default: 25 -_Description: cephfs-snap weekly: - Please specify the number of weekly snapshots that should be kept. - . - Depending on the use case a reasonable default might be to keep weekly - snapshots for 6 months, means: (6 * 4) + 1 = 25 - . - If unsure, leave empty (no automatic weekly snapshot rotation). - -Template: open-infrastructure-ceph-tools/cephfs-snap-monthly -Type: string -_Default: 13 -_Description: cephfs-snap monthly: - Please specify the number of monthly snapshots that should be kept. - . - Depending on the use case a reasonable default might be to keep monthly - snapshots for 1 year, means: (12 * 1) + 1 = 13 - . - If unsure, leave empty (no automatic monthly snapshot rotation). - -Template: open-infrastructure-ceph-tools/cephfs-snap-yearly -Type: string -_Default: 11 -_Description: cephfs-snap yearly: - Please specify the number of yearly snapshots that should be kept. - . - Depending on the use case a reasonable default might be to keep yearly - snapshots for 10 years, means: (10 * 1) + 1 = 11 - . - If unsure, leave empty (no automatic yearly snapshot rotation). - -Template: open-infrastructure-ceph-tools/irc -Type: string -_Default: -_Description: IRC notifications: - The cephfs-snap 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-storage-tools.NEWS b/debian/open-infrastructure-storage-tools.NEWS new file mode 100644 index 0000000..b11e2ca --- /dev/null +++ b/debian/open-infrastructure-storage-tools.NEWS @@ -0,0 +1,9 @@ +open-infrastructure-storage-tools (20170410-1) unstable; urgency=low + + * Backward incompatible changes: + - cephfs-snap changed name of snapshots: + + old: ${TYPE}_${YEAR}-${MONTH}-${DAY}_${HOUR}${MINUTES}${TIMEZONE} + + new: ${YEAR}-${MONTH}-${DAY}_${HOUR}${MINUTES}${SECONDS}${TIMEZONE}_${TYPE} + - cephfs-snap changed logfile location, now in /var/log/storage-tools/cephfs-snap/cephfs-snap.log + + -- Daniel Baumann Tue, 11 Apr 2017 00:20:17 +0200 diff --git a/debian/open-infrastructure-storage-tools.config b/debian/open-infrastructure-storage-tools.config new file mode 100644 index 0000000..b2c4aa9 --- /dev/null +++ b/debian/open-infrastructure-storage-tools.config @@ -0,0 +1,68 @@ +#!/bin/sh + +set -e + +CONFFILE="/etc/open-infrastructure/ceph-tools.conf" + +. /usr/share/debconf/confmodule + +if [ -e "${CONFFILE}" ] +then + . ${CONFFILE} || true + + db_set open-infrastructure-storage-tools/ceph-log "${CEPH_LOG}" + db_set open-infrastructure-storage-tools/ceph-info "${CEPH_INFO}" + + db_set open-infrastructure-storage-tools/cephfs-snap "${CEPHFS_SNAP}" + db_set open-infrastructure-storage-tools/cephfs-snap-directories "${CEPHFS_SNAP_DIRECTORIES}" + + db_set open-infrastructure-storage-tools/cephfs-snap-hourly "${CEPHFS_SNAP_HOURLY}" + db_set open-infrastructure-storage-tools/cephfs-snap-daily "${CEPHFS_SNAP_DAILY}" + db_set open-infrastructure-storage-tools/cephfs-snap-weekly "${CEPHFS_SNAP_WEEKLY}" + db_set open-infrastructure-storage-tools/cephfs-snap-monthly "${CEPHFS_SNAP_MONTHLY}" + db_set open-infrastructure-storage-tools/cephfs-snap-yearly "${CEPHFS_SNAP_YEARLY}" + + db_set open-infrastructure-storage-tools/irc "${IRK_TARGETS}" +fi + +db_settitle open-infrastructure-storage-tools/title +db_input low open-infrastructure-storage-tools/ceph-log || true +db_go + +db_settitle open-infrastructure-storage-tools/title +db_input low open-infrastructure-storage-tools/ceph-info || true +db_go + +db_settitle open-infrastructure-storage-tools/title +db_input low open-infrastructure-storage-tools/cephfs-snap || true +db_go + +db_settitle open-infrastructure-storage-tools/title +db_input low open-infrastructure-storage-tools/cephfs-snap-directories || true +db_go + +db_settitle open-infrastructure-storage-tools/title +db_input low open-infrastructure-storage-tools/cephfs-snap-hourly || true +db_go + +db_settitle open-infrastructure-storage-tools/title +db_input low open-infrastructure-storage-tools/cephfs-snap-daily || true +db_go + +db_settitle open-infrastructure-storage-tools/title +db_input low open-infrastructure-storage-tools/cephfs-snap-weekly || true +db_go + +db_settitle open-infrastructure-storage-tools/title +db_input low open-infrastructure-storage-tools/cephfs-snap-monthly || true +db_go + +db_settitle open-infrastructure-storage-tools/title +db_input low open-infrastructure-storage-tools/cephfs-snap-yearly || true +db_go + +db_settitle open-infrastructure-storage-tools/title +db_input low open-infrastructure-storage-tools/irc || true +db_go + +db_stop diff --git a/debian/open-infrastructure-storage-tools.lintian-overrides b/debian/open-infrastructure-storage-tools.lintian-overrides new file mode 100644 index 0000000..82c4a94 --- /dev/null +++ b/debian/open-infrastructure-storage-tools.lintian-overrides @@ -0,0 +1,2 @@ +# configuration file follows name of the tool +open-infrastructure-storage-tools: non-standard-apache2-configuration-name diff --git a/debian/open-infrastructure-storage-tools.postinst b/debian/open-infrastructure-storage-tools.postinst new file mode 100755 index 0000000..db5af87 --- /dev/null +++ b/debian/open-infrastructure-storage-tools.postinst @@ -0,0 +1,139 @@ +#!/bin/sh + +set -e + +CONFFILE="/etc/open-infrastructure/ceph-tools.conf" + +case "${1}" in + configure) + . /usr/share/debconf/confmodule + + db_get open-infrastructure-storage-tools/ceph-log + CEPH_LOG="${RET}" # boolean + + db_get open-infrastructure-storage-tools/ceph-info + CEPH_INFO="${RET}" # boolean + + db_get open-infrastructure-storage-tools/cephfs-snap + CEPHFS_SNAP="${RET}" # boolean + + db_get open-infrastructure-storage-tools/cephfs-snap-directories + CEPHFS_SNAP_DIRECTORIES="${RET}" # string (w/ empty) + + db_get open-infrastructure-storage-tools/cephfs-snap-hourly + CEPHFS_SNAP_HOURLY="${RET}" # string (w/ empty) + + db_get open-infrastructure-storage-tools/cephfs-snap-daily + CEPHFS_SNAP_DAILY="${RET}" # string (w/ empty) + + db_get open-infrastructure-storage-tools/cephfs-snap-weekly + CEPHFS_SNAP_WEEKLY="${RET}" # string (w/ empty) + + db_get open-infrastructure-storage-tools/cephfs-snap-monthly + CEPHFS_SNAP_MONTHLY="${RET}" # string (w/ empty) + + db_get open-infrastructure-storage-tools/cephfs-snap-yearly + CEPHFS_SNAP_YEARLY="${RET}" # string (w/ empty) + + db_get open-infrastructure-storage-tools/irc + IRK_TARGETS="${RET}" # string (w/ empty) + + db_stop + + if [ ! -e "${CONFFILE}" ] + then + mkdir -p /etc/open-infrastructure + +cat > "${CONFFILE}" << EOF +# /etc/open-infrastructure/ceph-tools.conf + +CEPH_INFO="${CEPH_INFO}" +CEPH_LOG="${CEPH_LOG}" + +CEPHFS_SNAP="${CEPHFS_SNAP}" +CEPHFS_SNAP_DIRECTORIES="${CEPHFS_SNAP_DIRECTORIES}" + +CEPHFS_SNAP_HOURLY="${CEPHFS_SNAP_HOURLY}" +CEPHFS_SNAP_DAILY="${CEPHFS_SNAP_DAILY}" +CEPHFS_SNAP_WEEKLY="${CEPHFS_SNAP_WEEKLY}" +CEPHFS_SNAP_MONTHLY="${CEPHFS_SNAP_MONTHLY}" +CEPHFS_SNAP_YEARLY="${CEPHFS_SNAP_YEARLY}" + +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 "${CEPH_LOG}" || \ + grep -Eq '^ *CEPH_LOG=' "${CONFFILE}" || \ + echo "CEPH_LOG=" >> "${CONFFILE}" + + test -z "${CEPH_INFO}" || \ + grep -Eq '^ *CEPH_INFO=' "${CONFFILE}" || \ + echo "CEPH_INFO=" >> "${CONFFILE}" + + test -z "${CEPHFS_SNAP}" || \ + grep -Eq '^ *CEPHFS_SNAP=' "${CONFFILE}" || \ + echo "CEPHFS_SNAP=" >> "${CONFFILE}" + + test -z "${CEPHFS_SNAP_DIRECTORIES}" || \ + grep -Eq '^ *CEPHFS_SNAP_DIRECTORIES=' "${CONFFILE}" || \ + echo "CEPHFS_SNAP_DIRECTORIES=" >> "${CONFFILE}" + + test -z "${CEPHFS_SNAP_HOURLY}" || \ + grep -Eq '^ *CEPHFS_SNAP_HOURLY=' "${CONFFILE}" || \ + echo "CEPHFS_SNAP_HOURLY=" >> "${CONFFILE}" + + test -z "${CEPHFS_SNAP_DAILY}" || \ + grep -Eq '^ *CEPHFS_SNAP_DAILY=' "${CONFFILE}" || \ + echo "CEPHFS_SNAP_DAILY=" >> "${CONFFILE}" + + test -z "${CEPHFS_SNAP_WEEKLY}" || \ + grep -Eq '^ *CEPHFS_SNAP_WEEKLY=' "${CONFFILE}" || \ + echo "CEPHFS_SNAP_WEEKLY=" >> "${CONFFILE}" + + test -z "${CEPHFS_SNAP_MONTHLY}" || \ + grep -Eq '^ *CEPHFS_SNAP_MONTHLY=' "${CONFFILE}" || \ + echo "CEPHFS_SNAP_MONTHLY=" >> "${CONFFILE}" + + test -z "${CEPHFS_SNAP_YEARLY}" || \ + grep -Eq '^ *CEPHFS_SNAP_YEARLY=' "${CONFFILE}" || \ + echo "CEPHFS_SNAP_YEARLY=" >> "${CONFFILE}" + + test -z "${IRK_TARGETS}" || \ + grep -Eq '^ *IRK_TARGETS=' "${CONFFILE}" || \ + echo "IRK_TARGETS=" >> "${CONFFILE}" + + sed -e "s|^ *CEPH_LOG=.*|CEPH_LOG=\"${CEPH_LOG}\"|" \ + -e "s|^ *CEPH_INFO=.*|CEPH_INFO=\"${CEPH_INFO}\"|" \ + -e "s|^ *CEPHFS_SNAP=.*|CEPHFS_SNAP=\"${CEPHFS_SNAP}\"|" \ + -e "s|^ *CEPHFS_SNAP_DIRECTORIES=.*|CEPHFS_SNAP_DIRECTORIES=\"${CEPHFS_SNAP_DIRECTORIES}\"|" \ + -e "s|^ *CEPHFS_SNAP_HOURLY=.*|CEPHFS_SNAP_HOURLY=\"${CEPHFS_SNAP_HOURLY}\"|" \ + -e "s|^ *CEPHFS_SNAP_DAILY=.*|CEPHFS_SNAP_DAILY=\"${CEPHFS_SNAP_DAILY}\"|" \ + -e "s|^ *CEPHFS_SNAP_WEEKLY=.*|CEPHFS_SNAP_WEEKLY=\"${CEPHFS_SNAP_WEEKLY}\"|" \ + -e "s|^ *CEPHFS_SNAP_MONTHLY=.*|CEPHFS_SNAP_MONTHLY=\"${CEPHFS_SNAP_MONTHLY}\"|" \ + -e "s|^ *CEPHFS_SNAP_YEARLY=.*|CEPHFS_SNAP_YEARLY=\"${CEPHFS_SNAP_YEARLY}\"|" \ + -e "s|^ *IRK_TARGETS=.*|IRK_TARGETS=\"${IRK_TARGETS}\"|" \ + < "${CONFFILE}" > "${CONFFILE}.tmp" + + mv -f "${CONFFILE}.tmp" "${CONFFILE}" + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`${1}'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 diff --git a/debian/open-infrastructure-storage-tools.postrm b/debian/open-infrastructure-storage-tools.postrm new file mode 100755 index 0000000..b714662 --- /dev/null +++ b/debian/open-infrastructure-storage-tools.postrm @@ -0,0 +1,22 @@ +#!/bin/sh + +set -e + +case "${1}" in + purge) + rm -f /etc/open-infrastructure/ceph-tools.conf + ;; + + remove|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-storage-tools.templates b/debian/open-infrastructure-storage-tools.templates new file mode 100644 index 0000000..3c024f3 --- /dev/null +++ b/debian/open-infrastructure-storage-tools.templates @@ -0,0 +1,105 @@ +Template: open-infrastructure-storage-tools/title +Type: title +_Description: storage-tools: Setup + +Template: open-infrastructure-storage-tools/ceph-log +Type: boolean +Default: false +_Description: ceph-log: + ceph-log stores Ceph cluster log as a logfile, see ceph-log(1). + . + Should ceph-log be enabled? + +Template: open-infrastructure-storage-tools/ceph-info +Type: boolean +Default: false +_Description: ceph-info: + ceph-info shows Ceph cluster information as a HTML page, see ceph-info(1). + . + Should ceph-info be enabled? + +Template: open-infrastructure-storage-tools/cephfs-snap +Type: boolean +Default: false +_Description: cephfs-snap: + cephfs-snap creates CephFS snapshots periodically, see cephfs-snap(1). + . + Should cephfs-snap be enabled? + +Template: open-infrastructure-storage-tools/cephfs-snap-directories +Type: string +_Default: +_Description: cephfs-snap directories: + Please specify the directories (space separated) where CephFS are mounted + that should be snapshoted. + . + If unsure, leave empty. + +Template: open-infrastructure-storage-tools/cephfs-snap-hourly +Type: string +_Default: 169 +_Description: cephfs-snap hourly: + Please specify the number of hourly snapshots that should be kept. + . + Depending on the use case a reasonable default might be to keep hourly + snapshots for 1 week, means: (24 * 7) + 1 = 169 + . + If unsure, leave empty (no automatic hourly snapshot rotation). + +Template: open-infrastructure-storage-tools/cephfs-snap-daily +Type: string +_Default: 32 +_Description: cephfs-snap daily: + Please specify the number of daily snapshots that should be kept. + . + Depending on the use case a reasonable default might be to keep daily + snapshots for 1 month, means: (31 * 1) + 1 = 32 + . + If unsure, leave empty (no automatic daily snapshot rotation). + +Template: open-infrastructure-storage-tools/cephfs-snap-weekly +Type: string +_Default: 25 +_Description: cephfs-snap weekly: + Please specify the number of weekly snapshots that should be kept. + . + Depending on the use case a reasonable default might be to keep weekly + snapshots for 6 months, means: (6 * 4) + 1 = 25 + . + If unsure, leave empty (no automatic weekly snapshot rotation). + +Template: open-infrastructure-storage-tools/cephfs-snap-monthly +Type: string +_Default: 13 +_Description: cephfs-snap monthly: + Please specify the number of monthly snapshots that should be kept. + . + Depending on the use case a reasonable default might be to keep monthly + snapshots for 1 year, means: (12 * 1) + 1 = 13 + . + If unsure, leave empty (no automatic monthly snapshot rotation). + +Template: open-infrastructure-storage-tools/cephfs-snap-yearly +Type: string +_Default: 11 +_Description: cephfs-snap yearly: + Please specify the number of yearly snapshots that should be kept. + . + Depending on the use case a reasonable default might be to keep yearly + snapshots for 10 years, means: (10 * 1) + 1 = 11 + . + If unsure, leave empty (no automatic yearly snapshot rotation). + +Template: open-infrastructure-storage-tools/irc +Type: string +_Default: +_Description: IRC notifications: + The cephfs-snap 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 130fe71..600c844 100644 --- a/debian/po/POTFILES.in +++ b/debian/po/POTFILES.in @@ -1 +1 @@ -[type: gettext/rfc822deb] open-infrastructure-ceph-tools.templates +[type: gettext/rfc822deb] open-infrastructure-storage-tools.templates diff --git a/debian/po/de.po b/debian/po/de.po index efb2a43..016d7ee 100644 --- a/debian/po/de.po +++ b/debian/po/de.po @@ -19,19 +19,19 @@ msgstr "" #. Type: title #. Description -#: ../open-infrastructure-ceph-tools.templates:1001 -msgid "ceph-tools: Setup" -msgstr "ceph-tools: Einrichtung" +#: ../open-infrastructure-storage-tools.templates:1001 +msgid "storage-tools: Setup" +msgstr "storage-tools: Einrichtung" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "ceph-log:" msgstr "ceph-log:" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "ceph-log stores Ceph cluster log as a logfile, see ceph-log(1)." msgstr "" "ceph-log speichert Protokolle des Ceph-Clusters als Protokolldatei; siehe " @@ -39,19 +39,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "Should ceph-log be enabled?" msgstr "Soll ceph-log aktiviert werden?" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "ceph-info:" msgstr "ceph-info:" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "" "ceph-info shows Ceph cluster information as a HTML page, see ceph-info(1)." msgstr "" @@ -60,19 +60,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "Should ceph-info be enabled?" msgstr "Soll ceph-info aktiviert werden?" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "cephfs-snap:" msgstr "cephfs-snap:" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "cephfs-snap creates CephFS snapshots periodically, see cephfs-snap(1)." msgstr "" "cephfs-snap fertigt regelmäßig Schnappschüsse von CephFS-Dateisystemen an; " @@ -80,19 +80,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "Should cephfs-snap be enabled?" msgstr "Soll cephfs-snap aktiviert werden?" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "cephfs-snap directories:" msgstr "cephfs-snap-Verzeichnisse:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "" "Please specify the directories (space separated) where CephFS are mounted " "that should be snapshoted." @@ -103,32 +103,32 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "If unsure, leave empty." msgstr "Wenn Sie unsicher sind, geben Sie nichts ein." #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:6001 +#: ../open-infrastructure-storage-tools.templates:6001 msgid "169" msgstr "169" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "cephfs-snap hourly:" msgstr "cephfs-snap stündlich:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "Please specify the number of hourly snapshots that should be kept." msgstr "" "Bitte geben Sie an, wie viele stündlicher Schnappschüsse aufzubewahren sind." #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "" "Depending on the use case a reasonable default might be to keep hourly " "snapshots for 1 week, means: (24 * 7) + 1 = 169" @@ -139,7 +139,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "If unsure, leave empty (no automatic hourly snapshot rotation)." msgstr "" "Wenn Sie unsicher sind, geben Sie nichts ein. Eine Rotation der stündlichen " @@ -147,26 +147,26 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:7001 +#: ../open-infrastructure-storage-tools.templates:7001 msgid "32" msgstr "32" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "cephfs-snap daily:" msgstr "cephfs-snap täglich:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "Please specify the number of daily snapshots that should be kept." msgstr "" "Bitte geben Sie an, wie viele tägliche Schnappschüsse aufzubewahren sind." #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "" "Depending on the use case a reasonable default might be to keep daily " "snapshots for 1 month, means: (31 * 1) + 1 = 32" @@ -176,7 +176,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "If unsure, leave empty (no automatic daily snapshot rotation)." msgstr "" "Wenn Sie unsicher sind, geben Sie nichts ein. Eine Rotation der täglichen " @@ -184,19 +184,19 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:8001 +#: ../open-infrastructure-storage-tools.templates:8001 msgid "25" msgstr "25" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "cephfs-snap weekly:" msgstr "cephfs-snap wöchentlich:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "Please specify the number of weekly snapshots that should be kept." msgstr "" "Bitte geben Sie an, wie viele wöchentliche Schnappschüsse aufzubewahren " @@ -204,7 +204,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "" "Depending on the use case a reasonable default might be to keep weekly " "snapshots for 6 months, means: (6 * 4) + 1 = 25" @@ -215,7 +215,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "If unsure, leave empty (no automatic weekly snapshot rotation)." msgstr "" "Wenn Sie unsicher sind, geben Sie nichts ein. Eine Rotation der " @@ -223,26 +223,26 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:9001 +#: ../open-infrastructure-storage-tools.templates:9001 msgid "13" msgstr "13" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "cephfs-snap monthly:" msgstr "cephfs-snap monatlich:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "Please specify the number of monthly snapshots that should be kept." msgstr "" "Bitte geben Sie an, wie viele monatliche Schnappschüsse aufzubewahren sind." #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "" "Depending on the use case a reasonable default might be to keep monthly " "snapshots for 1 year, means: (12 * 1) + 1 = 13" @@ -253,7 +253,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "If unsure, leave empty (no automatic monthly snapshot rotation)." msgstr "" "Wenn Sie unsicher sind, geben Sie nichts ein. Eine Rotation der monatlichen " @@ -261,26 +261,26 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:10001 +#: ../open-infrastructure-storage-tools.templates:10001 msgid "11" msgstr "11" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "cephfs-snap yearly:" msgstr "cephfs-snap jährlich:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "Please specify the number of yearly snapshots that should be kept." msgstr "" "Bitte geben Sie an, wie viele jährliche Schnappschüsse aufzubewahren sind." #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "" "Depending on the use case a reasonable default might be to keep yearly " "snapshots for 10 years, means: (10 * 1) + 1 = 11" @@ -291,7 +291,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "If unsure, leave empty (no automatic yearly snapshot rotation)." msgstr "" "Wenn Sie unsicher sind, geben Sie nichts ein. Eine Rotation der jährlichen " @@ -299,13 +299,13 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "IRC notifications:" msgstr "IRC-Benachrichtigungen:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "" "The cephfs-snap command can send IRC notifications via irker to one or more " "(whitespace separated) IRC channels." @@ -315,7 +315,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "" "The following example will send IRC notifications to the open-infrastructure " "channel on irc.oftc.net:" @@ -325,13 +325,13 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid " irc://irc.oftc.net:6668/open-infrastructure" msgstr " irc://irc.oftc.net:6668/open-infrastructure" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "If unsure, leave empty (default)." msgstr "" "Wenn Sie unsicher sind, geben Sie nichts ein. Es werden dann " diff --git a/debian/po/es.po b/debian/po/es.po index 2eb8000..c0426c3 100644 --- a/debian/po/es.po +++ b/debian/po/es.po @@ -17,19 +17,19 @@ msgstr "" #. Type: title #. Description -#: ../open-infrastructure-ceph-tools.templates:1001 -msgid "ceph-tools: Setup" -msgstr "ceph-tools: Configuración" +#: ../open-infrastructure-storage-tools.templates:1001 +msgid "storage-tools: Setup" +msgstr "storage-tools: Configuración" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "ceph-log:" msgstr "ceph-log:" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "ceph-log stores Ceph cluster log as a logfile, see ceph-log(1)." msgstr "" "ceph-log almacena el registro del clúster Ceph como un archivo de registro, " @@ -37,19 +37,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "Should ceph-log be enabled?" msgstr "¿Debería activarse ceph-log?" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "ceph-info:" msgstr "ceph-info:" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "" "ceph-info shows Ceph cluster information as a HTML page, see ceph-info(1)." msgstr "" @@ -58,19 +58,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "Should ceph-info be enabled?" msgstr "¿Debería activarse ceph-info?" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "cephfs-snap:" msgstr "cephfs-snap:" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "cephfs-snap creates CephFS snapshots periodically, see cephfs-snap(1)." msgstr "" "cephfs-snap genera instantáneas CephFS periódicamente, consulte " @@ -78,19 +78,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "Should cephfs-snap be enabled?" msgstr "¿Debería activarse cephfs-snap?" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "cephfs-snap directories:" msgstr "directorios cephfs-snap:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "" "Please specify the directories (space separated) where CephFS are mounted " "that should be snapshoted." @@ -100,25 +100,25 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "If unsure, leave empty." msgstr "Si no está seguro, déjelo en blanco." #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:6001 +#: ../open-infrastructure-storage-tools.templates:6001 msgid "169" msgstr "169" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "cephfs-snap hourly:" msgstr "cephfs-snap cada hora:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "Please specify the number of hourly snapshots that should be kept." msgstr "" "Por favor, indique el número de las instantáneas guardadas cada hora que " @@ -126,7 +126,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "" "Depending on the use case a reasonable default might be to keep hourly " "snapshots for 1 week, means: (24 * 7) + 1 = 169" @@ -137,26 +137,26 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "If unsure, leave empty (no automatic hourly snapshot rotation)." msgstr "Si no está seguro, déjelo en blanco (sin rotación automática de " "instantáneas cada hora)." #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:7001 +#: ../open-infrastructure-storage-tools.templates:7001 msgid "32" msgstr "32" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "cephfs-snap daily:" msgstr "cephfs-snap diario:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "Please specify the number of daily snapshots that should be kept." msgstr "" "Por favor, indique el número de las instantáneas diarias que se deben " @@ -164,7 +164,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "" "Depending on the use case a reasonable default might be to keep daily " "snapshots for 1 month, means: (31 * 1) + 1 = 32" @@ -175,26 +175,26 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "If unsure, leave empty (no automatic daily snapshot rotation)." msgstr "Si no está seguro, déjelo en blanco (sin rotación automática de " "instantáneas diarias)." #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:8001 +#: ../open-infrastructure-storage-tools.templates:8001 msgid "25" msgstr "25" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "cephfs-snap weekly:" msgstr "cephfs-snap semanal:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "Please specify the number of weekly snapshots that should be kept." msgstr "" "Por favor, indique el número de las instantáneas semanales que se deben " @@ -202,7 +202,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "" "Depending on the use case a reasonable default might be to keep weekly " "snapshots for 6 months, means: (6 * 4) + 1 = 25" @@ -213,26 +213,26 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "If unsure, leave empty (no automatic weekly snapshot rotation)." msgstr "Si no está seguro, déjelo en blanco (sin rotación automática de " "instantáneas semanales)." #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:9001 +#: ../open-infrastructure-storage-tools.templates:9001 msgid "13" msgstr "13" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "cephfs-snap monthly:" msgstr "cephfs-snap mensual:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "Please specify the number of monthly snapshots that should be kept." msgstr "" "Por favor, indique el número de las instantáneas mensuales que se deben " @@ -240,7 +240,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "" "Depending on the use case a reasonable default might be to keep monthly " "snapshots for 1 year, means: (12 * 1) + 1 = 13" @@ -251,26 +251,26 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "If unsure, leave empty (no automatic monthly snapshot rotation)." msgstr "Si no está seguro, déjelo en blanco (sin rotación automática de " "instantáneas mensuales)." #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:10001 +#: ../open-infrastructure-storage-tools.templates:10001 msgid "11" msgstr "11" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "cephfs-snap yearly:" msgstr "cephfs-snap anual:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "Please specify the number of yearly snapshots that should be kept." msgstr "" "Por favor, indique el número de las instantáneas anuales que se deben " @@ -278,7 +278,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "" "Depending on the use case a reasonable default might be to keep yearly " "snapshots for 10 years, means: (10 * 1) + 1 = 11" @@ -289,20 +289,20 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "If unsure, leave empty (no automatic yearly snapshot rotation)." msgstr "Si no está seguro, déjelo en blanco (sin rotación automática de " "instantáneas anuales)." #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "IRC notifications:" msgstr "Notificaciones IRC:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "" "The cephfs-snap command can send IRC notifications via irker to one or more " "(whitespace separated) IRC channels." @@ -312,7 +312,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "" "The following example will send IRC notifications to the open-infrastructure " "channel on irc.oftc.net:" @@ -322,12 +322,12 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid " irc://irc.oftc.net:6668/open-infrastructure" msgstr " irc://irc.oftc.net:6668/open-infrastructure" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 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 feab15a..e852e32 100644 --- a/debian/po/fr.po +++ b/debian/po/fr.po @@ -19,21 +19,21 @@ msgstr "" #. Type: title #. Description -#: ../open-infrastructure-ceph-tools.templates:1001 +#: ../open-infrastructure-storage-tools.templates:1001 #, fuzzy #| msgid "storage-tools: Setup" -msgid "ceph-tools: Setup" +msgid "storage-tools: Setup" msgstr "storage-tools : configuration" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "ceph-log:" msgstr "ceph-log :" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "ceph-log stores Ceph cluster log as a logfile, see ceph-log(1)." msgstr "" "ceph-log journalise la grappe Ceph dans un fichier d’historique, consulter " @@ -41,19 +41,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "Should ceph-log be enabled?" msgstr "Faut-il activer ceph-log ?" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "ceph-info:" msgstr "ceph-info :" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "" "ceph-info shows Ceph cluster information as a HTML page, see ceph-info(1)." msgstr "" @@ -62,19 +62,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "Should ceph-info be enabled?" msgstr "Faut-il activer ceph-info ?" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "cephfs-snap:" msgstr "cephfs-snap :" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "cephfs-snap creates CephFS snapshots periodically, see cephfs-snap(1)." msgstr "" "Cephfs-snap crée des instantanés CephFS de manière périodique, consulter " @@ -82,19 +82,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "Should cephfs-snap be enabled?" msgstr "Faut-il activer cephfs-snap ?" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "cephfs-snap directories:" msgstr "Répertoires de cephfs-snap :" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "" "Please specify the directories (space separated) where CephFS are mounted " "that should be snapshoted." @@ -104,31 +104,31 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "If unsure, leave empty." msgstr "En cas de doute, laisser la ligne vide." #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:6001 +#: ../open-infrastructure-storage-tools.templates:6001 msgid "169" msgstr "169" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "cephfs-snap hourly:" msgstr "cephfs-snap par heure :" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "Please specify the number of hourly snapshots that should be kept." msgstr "Veuillez indiquer le nombre d’instantanés conservés par heure." #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "" "Depending on the use case a reasonable default might be to keep hourly " "snapshots for 1 week, means: (24 * 7) + 1 = 169" @@ -138,7 +138,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "If unsure, leave empty (no automatic hourly snapshot rotation)." msgstr "" "En cas de doute, laisser la ligne vide (pas de rotation automatique " @@ -146,25 +146,25 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:7001 +#: ../open-infrastructure-storage-tools.templates:7001 msgid "32" msgstr "32" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "cephfs-snap daily:" msgstr "cephfs-snap par jour :" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "Please specify the number of daily snapshots that should be kept." msgstr "Veuillez indiquer le nombre d’instantanés quotidiens à conserver." #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "" "Depending on the use case a reasonable default might be to keep daily " "snapshots for 1 month, means: (31 * 1) + 1 = 32" @@ -174,7 +174,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "If unsure, leave empty (no automatic daily snapshot rotation)." msgstr "" "En cas de doute, laisser la ligne vide (pas de rotation automatique " @@ -182,25 +182,25 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:8001 +#: ../open-infrastructure-storage-tools.templates:8001 msgid "25" msgstr "25" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "cephfs-snap weekly:" msgstr "cephfs-snap hebdomadaires :" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "Please specify the number of weekly snapshots that should be kept." msgstr "Veuillez indiquer le nombre d’instantanés hebdomadaires à conserver." #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "" "Depending on the use case a reasonable default might be to keep weekly " "snapshots for 6 months, means: (6 * 4) + 1 = 25" @@ -211,7 +211,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "If unsure, leave empty (no automatic weekly snapshot rotation)." msgstr "" "En cas de doute, laisser la ligne vide (pas de rotation automatique " @@ -219,25 +219,25 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:9001 +#: ../open-infrastructure-storage-tools.templates:9001 msgid "13" msgstr "13" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "cephfs-snap monthly:" msgstr "cephfs-snap mensuels :" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "Please specify the number of monthly snapshots that should be kept." msgstr "Veuillez indiquer le nombre d’instantanés mensuels à conserver." #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "" "Depending on the use case a reasonable default might be to keep monthly " "snapshots for 1 year, means: (12 * 1) + 1 = 13" @@ -247,7 +247,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "If unsure, leave empty (no automatic monthly snapshot rotation)." msgstr "" "En cas de doute, laisser la ligne vide (pas de rotation automatique " @@ -255,25 +255,25 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:10001 +#: ../open-infrastructure-storage-tools.templates:10001 msgid "11" msgstr "11" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "cephfs-snap yearly:" msgstr "cephfs-snap annuels :" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "Please specify the number of yearly snapshots that should be kept." msgstr "Veuillez indiquer le nombre d’instantanés annuels à conserver." #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "" "Depending on the use case a reasonable default might be to keep yearly " "snapshots for 10 years, means: (10 * 1) + 1 = 11" @@ -283,7 +283,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "If unsure, leave empty (no automatic yearly snapshot rotation)." msgstr "" "En cas de doute, laisser la ligne vide (pas de rotation automatique " @@ -291,13 +291,13 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "IRC notifications:" msgstr "Notifications IRC :" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "" "The cephfs-snap command can send IRC notifications via irker to one or more " "(whitespace separated) IRC channels." @@ -307,7 +307,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "" "The following example will send IRC notifications to the open-infrastructure " "channel on irc.oftc.net:" @@ -317,12 +317,12 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid " irc://irc.oftc.net:6668/open-infrastructure" msgstr " irc://irc.oftc.net:6668/open-infrastructure" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "If unsure, leave empty (default)." msgstr "En cas de doute, laisser la ligne vide (valeur par défaut)." diff --git a/debian/po/nl.po b/debian/po/nl.po index e2a2ae3..34c4db5 100644 --- a/debian/po/nl.po +++ b/debian/po/nl.po @@ -18,19 +18,19 @@ msgstr "" #. Type: title #. Description -#: ../open-infrastructure-ceph-tools.templates:1001 -msgid "ceph-tools: Setup" -msgstr "ceph-tools: Instellingen" +#: ../open-infrastructure-storage-tools.templates:1001 +msgid "storage-tools: Setup" +msgstr "storage-tools: Instellingen" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "ceph-log:" msgstr "ceph-log:" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "ceph-log stores Ceph cluster log as a logfile, see ceph-log(1)." msgstr "" "ceph-log slaat de log van het Ceph-cluster op in de vorm van een logbestand; " @@ -38,19 +38,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "Should ceph-log be enabled?" msgstr "Moet ceph-log geactiveerd worden?" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "ceph-info:" msgstr "ceph-info:" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "" "ceph-info shows Ceph cluster information as a HTML page, see ceph-info(1)." msgstr "" @@ -59,19 +59,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "Should ceph-info be enabled?" msgstr "Moet ceph-info geactiveerd worden?" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "cephfs-snap:" msgstr "cephfs-snap:" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "cephfs-snap creates CephFS snapshots periodically, see cephfs-snap(1)." msgstr "" "cephfs-snap maakt bij tussenpozen momentopnames van het CephFS; zie cephfs-" @@ -79,19 +79,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "Should cephfs-snap be enabled?" msgstr "Moet cephfs-snap geactiveerd worden?" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "cephfs-snap directories:" msgstr "mappen voor cephfs-snap:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "" "Please specify the directories (space separated) where CephFS are mounted " "that should be snapshoted." @@ -101,25 +101,25 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "If unsure, leave empty." msgstr "Laat leeg bij twijfel." #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:6001 +#: ../open-infrastructure-storage-tools.templates:6001 msgid "169" msgstr "169" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "cephfs-snap hourly:" msgstr "cephfs-snap met tussenpozen van een uur:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "Please specify the number of hourly snapshots that should be kept." msgstr "" "Geef op welk aantal van de momentopnames die ieder uur genomen worden, " @@ -127,7 +127,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "" "Depending on the use case a reasonable default might be to keep hourly " "snapshots for 1 week, means: (24 * 7) + 1 = 169" @@ -138,7 +138,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "If unsure, leave empty (no automatic hourly snapshot rotation)." msgstr "" "Laat leeg bij twijfel (geen automatische wisseling van de momentopnames die " @@ -146,19 +146,19 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:7001 +#: ../open-infrastructure-storage-tools.templates:7001 msgid "32" msgstr "32" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "cephfs-snap daily:" msgstr "dagelijkse cephfs-snap:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "Please specify the number of daily snapshots that should be kept." msgstr "" "Geef op welk aantal van de momentopnames die dagelijks genomen worden, " @@ -166,7 +166,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "" "Depending on the use case a reasonable default might be to keep daily " "snapshots for 1 month, means: (31 * 1) + 1 = 32" @@ -177,7 +177,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "If unsure, leave empty (no automatic daily snapshot rotation)." msgstr "" "Laat leeg bij twijfel (geen automatische wisseling van de momentopnames die " @@ -185,19 +185,19 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:8001 +#: ../open-infrastructure-storage-tools.templates:8001 msgid "25" msgstr "25" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "cephfs-snap weekly:" msgstr "wekelijkse cephfs-snap:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "Please specify the number of weekly snapshots that should be kept." msgstr "" "Geef op welk aantal van de momentopnames die wekelijks genomen worden, " @@ -205,7 +205,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "" "Depending on the use case a reasonable default might be to keep weekly " "snapshots for 6 months, means: (6 * 4) + 1 = 25" @@ -216,7 +216,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "If unsure, leave empty (no automatic weekly snapshot rotation)." msgstr "" "Laat leeg bij twijfel (geen automatische wisseling van de momentopnames die " @@ -224,19 +224,19 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:9001 +#: ../open-infrastructure-storage-tools.templates:9001 msgid "13" msgstr "13" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "cephfs-snap monthly:" msgstr "maandelijkse cephfs-snap:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "Please specify the number of monthly snapshots that should be kept." msgstr "" "Geef op welk aantal van de momentopnames die maandelijks genomen worden, " @@ -244,7 +244,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "" "Depending on the use case a reasonable default might be to keep monthly " "snapshots for 1 year, means: (12 * 1) + 1 = 13" @@ -255,7 +255,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "If unsure, leave empty (no automatic monthly snapshot rotation)." msgstr "" "Laat leeg bij twijfel (geen automatische wisseling van de momentopnames die " @@ -263,19 +263,19 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:10001 +#: ../open-infrastructure-storage-tools.templates:10001 msgid "11" msgstr "11" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "cephfs-snap yearly:" msgstr "jaarlijkse cephfs-snap:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "Please specify the number of yearly snapshots that should be kept." msgstr "" "Geef op welk aantal van de momentopnames die jaarlijks genomen worden, " @@ -283,7 +283,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "" "Depending on the use case a reasonable default might be to keep yearly " "snapshots for 10 years, means: (10 * 1) + 1 = 11" @@ -294,7 +294,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "If unsure, leave empty (no automatic yearly snapshot rotation)." msgstr "" "Laat leeg bij twijfel (geen automatische wisseling van de momentopnames die " @@ -302,13 +302,13 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "IRC notifications:" msgstr "Kennisgeving via IRC:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "" "The cephfs-snap command can send IRC notifications via irker to one or more " "(whitespace separated) IRC channels." @@ -318,7 +318,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "" "The following example will send IRC notifications to the open-infrastructure " "channel on irc.oftc.net:" @@ -328,12 +328,12 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid " irc://irc.oftc.net:6668/open-infrastructure" msgstr " irc://irc.oftc.net:6668/open-infrastructure" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "If unsure, leave empty (default)." msgstr "Laat leeg bij twijfel (standaard)." diff --git a/debian/po/pt.po b/debian/po/pt.po index 59b65ae..3e6b824 100644 --- a/debian/po/pt.po +++ b/debian/po/pt.po @@ -18,19 +18,19 @@ msgstr "" #. Type: title #. Description -#: ../open-infrastructure-ceph-tools.templates:1001 -msgid "ceph-tools: Setup" -msgstr "ceph-tools: Configuração" +#: ../open-infrastructure-storage-tools.templates:1001 +msgid "storage-tools: Setup" +msgstr "storage-tools: Configuração" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "ceph-log:" msgstr "ceph-log:" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "ceph-log stores Ceph cluster log as a logfile, see ceph-log(1)." msgstr "" "O ceph-log armazena os registos do cluster Ceph num ficheiro de " @@ -38,19 +38,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "Should ceph-log be enabled?" msgstr "Deve o ceph-log ser activado?" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "ceph-info:" msgstr "ceph-info:" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "" "ceph-info shows Ceph cluster information as a HTML page, see ceph-info(1)." msgstr "" @@ -59,19 +59,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "Should ceph-info be enabled?" msgstr "Deve o ceph-info ser activado?" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "cephfs-snap:" msgstr "cephfs-snap:" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "cephfs-snap creates CephFS snapshots periodically, see cephfs-snap(1)." msgstr "" "O cephfs-snap cria snapshots do CephFS periodicamente, veja " @@ -79,19 +79,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "Should cephfs-snap be enabled?" msgstr "Deve o cephfs-snap ser activado?" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "cephfs-snap directories:" msgstr "Directórios do cephfs-snap:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "" "Please specify the directories (space separated) where CephFS are mounted " "that should be snapshoted." @@ -102,25 +102,25 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "If unsure, leave empty." msgstr "Se tem dúvidas, deixe este campo vazio." #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:6001 +#: ../open-infrastructure-storage-tools.templates:6001 msgid "169" msgstr "169" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "cephfs-snap hourly:" msgstr "cephfs-snap de hora a hora:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "Please specify the number of hourly snapshots that should be kept." msgstr "" "Por favor especifique o número de snapshots horárias que deverão " @@ -128,7 +128,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "" "Depending on the use case a reasonable default might be to keep hourly " "snapshots for 1 week, means: (24 * 7) + 1 = 169" @@ -138,7 +138,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "If unsure, leave empty (no automatic hourly snapshot rotation)." msgstr "" "Se tem dúvidas, deixe este campo vazio (sem rotação horária " @@ -146,19 +146,19 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:7001 +#: ../open-infrastructure-storage-tools.templates:7001 msgid "32" msgstr "32" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "cephfs-snap daily:" msgstr "cephfs-snap diária:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "Please specify the number of daily snapshots that should be kept." msgstr "" "Por favor especifique o número de snapshots diárias que deverão " @@ -166,7 +166,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "" "Depending on the use case a reasonable default might be to keep daily " "snapshots for 1 month, means: (31 * 1) + 1 = 32" @@ -176,7 +176,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "If unsure, leave empty (no automatic daily snapshot rotation)." msgstr "" "Se tem dúvidas, deixe este campo vazio (sem rotação automática " @@ -184,19 +184,19 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:8001 +#: ../open-infrastructure-storage-tools.templates:8001 msgid "25" msgstr "25" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "cephfs-snap weekly:" msgstr "cephfs-snap semanal:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "Please specify the number of weekly snapshots that should be kept." msgstr "" "Por favor especifique o número de snapshots semanais que deverão " @@ -204,7 +204,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "" "Depending on the use case a reasonable default might be to keep weekly " "snapshots for 6 months, means: (6 * 4) + 1 = 25" @@ -214,7 +214,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "If unsure, leave empty (no automatic weekly snapshot rotation)." msgstr "" "Se tem dúvidas, deixe este campo vazio (sem rotação automática " @@ -222,19 +222,19 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:9001 +#: ../open-infrastructure-storage-tools.templates:9001 msgid "13" msgstr "13" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "cephfs-snap monthly:" msgstr "cephfs-snap mensal:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "Please specify the number of monthly snapshots that should be kept." msgstr "" "Por favor especifique o número de snapshots mensais que deverão " @@ -242,7 +242,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "" "Depending on the use case a reasonable default might be to keep monthly " "snapshots for 1 year, means: (12 * 1) + 1 = 13" @@ -252,7 +252,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "If unsure, leave empty (no automatic monthly snapshot rotation)." msgstr "" "Se tem dúvidas, deixe este campo vazio (sem rotação automática " @@ -260,19 +260,19 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:10001 +#: ../open-infrastructure-storage-tools.templates:10001 msgid "11" msgstr "11" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "cephfs-snap yearly:" msgstr "cephfs-snap anual:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "Please specify the number of yearly snapshots that should be kept." msgstr "" "Por favor especifique o número de snapshots anuais que deverão " @@ -280,7 +280,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "" "Depending on the use case a reasonable default might be to keep yearly " "snapshots for 10 years, means: (10 * 1) + 1 = 11" @@ -290,7 +290,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "If unsure, leave empty (no automatic yearly snapshot rotation)." msgstr "" "Se tem dúvidas, deixe este campo vazio (sem rotação automática " @@ -298,13 +298,13 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "IRC notifications:" msgstr "Notificações IRC:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "" "The cephfs-snap command can send IRC notifications via irker to one or more " "(whitespace separated) IRC channels." @@ -314,7 +314,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "" "The following example will send IRC notifications to the open-infrastructure " "channel on irc.oftc.net:" @@ -324,12 +324,12 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid " irc://irc.oftc.net:6668/open-infrastructure" msgstr " irc://irc.oftc.net:6668/open-infrastructure" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "If unsure, leave empty (default)." msgstr "Se tem dúvidas, deixe este campo vazio (predefinição)." diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po index dc6d3b5..ac98ce7 100644 --- a/debian/po/pt_BR.po +++ b/debian/po/pt_BR.po @@ -19,19 +19,19 @@ msgstr "" #. Type: title #. Description -#: ../open-infrastructure-ceph-tools.templates:1001 -msgid "ceph-tools: Setup" -msgstr "ceph-tools: Configuração" +#: ../open-infrastructure-storage-tools.templates:1001 +msgid "storage-tools: Setup" +msgstr "storage-tools: Configuração" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "ceph-log:" msgstr "ceph-log:" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "ceph-log stores Ceph cluster log as a logfile, see ceph-log(1)." msgstr "" "O ceph-log armazena o log do cluster Ceph como um arquivo de log, consulte " @@ -39,19 +39,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "Should ceph-log be enabled?" msgstr "O ceph-log deve ser ativado?" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "ceph-info:" msgstr "ceph-info:" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "" "ceph-info shows Ceph cluster information as a HTML page, see ceph-info(1)." msgstr "" @@ -60,19 +60,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "Should ceph-info be enabled?" msgstr "O ceph-info deve ser ativado?" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "cephfs-snap:" msgstr "cephfs-snap:" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "cephfs-snap creates CephFS snapshots periodically, see cephfs-snap(1)." msgstr "" "O cephfs-snap cria instantâneos do CephFS periodicamente, consulte cephfs-" @@ -80,19 +80,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "Should cephfs-snap be enabled?" msgstr "O cephfs-snap deve ser ativado?" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "cephfs-snap directories:" msgstr "Diretórios cephfs-snap:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "" "Please specify the directories (space separated) where CephFS are mounted " "that should be snapshoted." @@ -102,25 +102,25 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "If unsure, leave empty." msgstr "Se não tiver certeza, deixe em branco." #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:6001 +#: ../open-infrastructure-storage-tools.templates:6001 msgid "169" msgstr "169" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "cephfs-snap hourly:" msgstr "cephfs-snap horários:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "Please specify the number of hourly snapshots that should be kept." msgstr "" "Por favor, especifique o número de instantâneos horários que devem ser " @@ -128,7 +128,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "" "Depending on the use case a reasonable default might be to keep hourly " "snapshots for 1 week, means: (24 * 7) + 1 = 169" @@ -138,7 +138,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "If unsure, leave empty (no automatic hourly snapshot rotation)." msgstr "" "Se não tiver certeza, deixe em branco (sem rotação automática do instantâneo " @@ -146,19 +146,19 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:7001 +#: ../open-infrastructure-storage-tools.templates:7001 msgid "32" msgstr "32" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "cephfs-snap daily:" msgstr "cephfs-snap diário:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "Please specify the number of daily snapshots that should be kept." msgstr "" "Por favor, especifique o número de instantâneos diários que devem ser " @@ -166,7 +166,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "" "Depending on the use case a reasonable default might be to keep daily " "snapshots for 1 month, means: (31 * 1) + 1 = 32" @@ -176,7 +176,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "If unsure, leave empty (no automatic daily snapshot rotation)." msgstr "" "Se não tiver certeza, deixe em branco (sem rotação automática do instantâneo " @@ -184,19 +184,19 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:8001 +#: ../open-infrastructure-storage-tools.templates:8001 msgid "25" msgstr "25" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "cephfs-snap weekly:" msgstr "cephfs-snap semanal:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "Please specify the number of weekly snapshots that should be kept." msgstr "" "Por favor, especifique o número de instantâneos semanais que devem ser " @@ -204,7 +204,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "" "Depending on the use case a reasonable default might be to keep weekly " "snapshots for 6 months, means: (6 * 4) + 1 = 25" @@ -214,7 +214,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "If unsure, leave empty (no automatic weekly snapshot rotation)." msgstr "" "Se não tiver certeza, deixe em branco (sem rotação automática do instantâneo " @@ -222,19 +222,19 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:9001 +#: ../open-infrastructure-storage-tools.templates:9001 msgid "13" msgstr "13" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "cephfs-snap monthly:" msgstr "cephfs-snap mensal:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "Please specify the number of monthly snapshots that should be kept." msgstr "" "Por favor, especifique o número de instantâneos mensais que devem ser " @@ -242,7 +242,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "" "Depending on the use case a reasonable default might be to keep monthly " "snapshots for 1 year, means: (12 * 1) + 1 = 13" @@ -252,7 +252,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "If unsure, leave empty (no automatic monthly snapshot rotation)." msgstr "" "Se não tiver certeza, deixe em branco (sem rotação automática do instantâneo " @@ -260,19 +260,19 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:10001 +#: ../open-infrastructure-storage-tools.templates:10001 msgid "11" msgstr "11" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "cephfs-snap yearly:" msgstr "cephfs-snap anual:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "Please specify the number of yearly snapshots that should be kept." msgstr "" "Por favor, especifique o número de instantâneos anuais que devem ser " @@ -280,7 +280,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "" "Depending on the use case a reasonable default might be to keep yearly " "snapshots for 10 years, means: (10 * 1) + 1 = 11" @@ -290,7 +290,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "If unsure, leave empty (no automatic yearly snapshot rotation)." msgstr "" "Se não tiver certeza, deixe em branco (sem rotação automática do instantâneo " @@ -298,13 +298,13 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "IRC notifications:" msgstr "Notificações IRC:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "" "The cephfs-snap command can send IRC notifications via irker to one or more " "(whitespace separated) IRC channels." @@ -314,7 +314,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "" "The following example will send IRC notifications to the open-infrastructure " "channel on irc.oftc.net:" @@ -324,12 +324,12 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid " irc://irc.oftc.net:6668/open-infrastructure" msgstr " irc://irc.oftc.net:6668/open-infrastructure" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "If unsure, leave empty (default)." msgstr "Se não tiver certeza, deixe em branco (padrão)." diff --git a/debian/po/ru.po b/debian/po/ru.po index e03d40c..7d467a8 100644 --- a/debian/po/ru.po +++ b/debian/po/ru.po @@ -19,37 +19,37 @@ msgstr "" #. Type: title #. Description -#: ../open-infrastructure-ceph-tools.templates:1001 -msgid "ceph-tools: Setup" -msgstr "ceph-tools: настройка" +#: ../open-infrastructure-storage-tools.templates:1001 +msgid "storage-tools: Setup" +msgstr "storage-tools: настройка" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "ceph-log:" msgstr "ceph-log:" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "ceph-log stores Ceph cluster log as a logfile, see ceph-log(1)." msgstr "ceph-log хранит журнал кластера Ceph, подробности см. в ceph-log(1)." #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "Should ceph-log be enabled?" msgstr "Следует включить ceph-log?" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "ceph-info:" msgstr "ceph-info:" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "" "ceph-info shows Ceph cluster information as a HTML page, see ceph-info(1)." msgstr "" @@ -58,19 +58,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "Should ceph-info be enabled?" msgstr "Следует включить ceph-info?" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "cephfs-snap:" msgstr "cephfs-snap:" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "cephfs-snap creates CephFS snapshots periodically, see cephfs-snap(1)." msgstr "" "cephfs-snap периодически создаёт срезы CephFS, подробности см. в cephfs-" @@ -78,19 +78,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "Should cephfs-snap be enabled?" msgstr "Следует включить cephfs-snap?" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "cephfs-snap directories:" msgstr "Каталоги cephfs-snap:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "" "Please specify the directories (space separated) where CephFS are mounted " "that should be snapshoted." @@ -100,31 +100,31 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "If unsure, leave empty." msgstr "Если вы не уверены, то оставьте это поле пустым." #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:6001 +#: ../open-infrastructure-storage-tools.templates:6001 msgid "169" msgstr "169" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "cephfs-snap hourly:" msgstr "cephfs-snap раз в час:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "Please specify the number of hourly snapshots that should be kept." msgstr "Укажите число почасовых срезов, которые следует хранить." #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "" "Depending on the use case a reasonable default might be to keep hourly " "snapshots for 1 week, means: (24 * 7) + 1 = 169" @@ -134,7 +134,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "If unsure, leave empty (no automatic hourly snapshot rotation)." msgstr "" "Если вы не уверены, то оставьте это поле пустым (автоматическая часовая " @@ -142,25 +142,25 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:7001 +#: ../open-infrastructure-storage-tools.templates:7001 msgid "32" msgstr "32" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "cephfs-snap daily:" msgstr "cephfs-snap раз в день:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "Please specify the number of daily snapshots that should be kept." msgstr "Укажите число ежедневных срезов, которые следует хранить." #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "" "Depending on the use case a reasonable default might be to keep daily " "snapshots for 1 month, means: (31 * 1) + 1 = 32" @@ -170,7 +170,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "If unsure, leave empty (no automatic daily snapshot rotation)." msgstr "" "Если вы не уверены, то оставьте это поле пустым (автоматическая ежеджевная " @@ -178,25 +178,25 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:8001 +#: ../open-infrastructure-storage-tools.templates:8001 msgid "25" msgstr "25" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "cephfs-snap weekly:" msgstr "cephfs-snap раз в неделю:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "Please specify the number of weekly snapshots that should be kept." msgstr "Укажите число еженедельных срезов, которые следует хранить." #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "" "Depending on the use case a reasonable default might be to keep weekly " "snapshots for 6 months, means: (6 * 4) + 1 = 25" @@ -206,7 +206,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "If unsure, leave empty (no automatic weekly snapshot rotation)." msgstr "" "Если вы не уверены, то оставьте это поле пустым (автоматическая еженедельная " @@ -214,25 +214,25 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:9001 +#: ../open-infrastructure-storage-tools.templates:9001 msgid "13" msgstr "13" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "cephfs-snap monthly:" msgstr "cephfs-snap раз в месяц:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "Please specify the number of monthly snapshots that should be kept." msgstr "Укажите число ежемесячных срезов, которые следует хранить." #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "" "Depending on the use case a reasonable default might be to keep monthly " "snapshots for 1 year, means: (12 * 1) + 1 = 13" @@ -242,7 +242,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "If unsure, leave empty (no automatic monthly snapshot rotation)." msgstr "" "Если вы не уверены, то оставьте это поле пустым (автоматическая ежемесячная " @@ -250,25 +250,25 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:10001 +#: ../open-infrastructure-storage-tools.templates:10001 msgid "11" msgstr "11" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "cephfs-snap yearly:" msgstr "cephfs-snap раз в год:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "Please specify the number of yearly snapshots that should be kept." msgstr "Укажите число ежегодных срезов, которые следует хранить." #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "" "Depending on the use case a reasonable default might be to keep yearly " "snapshots for 10 years, means: (10 * 1) + 1 = 11" @@ -278,7 +278,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "If unsure, leave empty (no automatic yearly snapshot rotation)." msgstr "" "Если вы не уверены, то оставьте это поле пустым (автоматическая ежегодная " @@ -286,13 +286,13 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "IRC notifications:" msgstr "IRC-уведомления:" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "" "The cephfs-snap command can send IRC notifications via irker to one or more " "(whitespace separated) IRC channels." @@ -302,7 +302,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "" "The following example will send IRC notifications to the open-infrastructure " "channel on irc.oftc.net:" @@ -312,12 +312,12 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid " irc://irc.oftc.net:6668/open-infrastructure" msgstr " irc://irc.oftc.net:6668/open-infrastructure" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "If unsure, leave empty (default)." msgstr "Если вы не уверены, то оставьте это поле пустым (по умолчанию)." diff --git a/debian/po/templates.pot b/debian/po/templates.pot index b51598e..d6e5bb2 100644 --- a/debian/po/templates.pot +++ b/debian/po/templates.pot @@ -19,74 +19,74 @@ msgstr "" #. Type: title #. Description -#: ../open-infrastructure-ceph-tools.templates:1001 -msgid "ceph-tools: Setup" +#: ../open-infrastructure-storage-tools.templates:1001 +msgid "storage-tools: Setup" msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "ceph-log:" msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "ceph-log stores Ceph cluster log as a logfile, see ceph-log(1)." msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:2001 +#: ../open-infrastructure-storage-tools.templates:2001 msgid "Should ceph-log be enabled?" msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "ceph-info:" msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "" "ceph-info shows Ceph cluster information as a HTML page, see ceph-info(1)." msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:3001 +#: ../open-infrastructure-storage-tools.templates:3001 msgid "Should ceph-info be enabled?" msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "cephfs-snap:" msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "cephfs-snap creates CephFS snapshots periodically, see cephfs-snap(1)." msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-ceph-tools.templates:4001 +#: ../open-infrastructure-storage-tools.templates:4001 msgid "Should cephfs-snap be enabled?" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "cephfs-snap directories:" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "" "Please specify the directories (space separated) where CephFS are mounted " "that should be snapshoted." @@ -94,31 +94,31 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:5002 +#: ../open-infrastructure-storage-tools.templates:5002 msgid "If unsure, leave empty." msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:6001 +#: ../open-infrastructure-storage-tools.templates:6001 msgid "169" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "cephfs-snap hourly:" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "Please specify the number of hourly snapshots that should be kept." msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "" "Depending on the use case a reasonable default might be to keep hourly " "snapshots for 1 week, means: (24 * 7) + 1 = 169" @@ -126,31 +126,31 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:6002 +#: ../open-infrastructure-storage-tools.templates:6002 msgid "If unsure, leave empty (no automatic hourly snapshot rotation)." msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:7001 +#: ../open-infrastructure-storage-tools.templates:7001 msgid "32" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "cephfs-snap daily:" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "Please specify the number of daily snapshots that should be kept." msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "" "Depending on the use case a reasonable default might be to keep daily " "snapshots for 1 month, means: (31 * 1) + 1 = 32" @@ -158,31 +158,31 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:7002 +#: ../open-infrastructure-storage-tools.templates:7002 msgid "If unsure, leave empty (no automatic daily snapshot rotation)." msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:8001 +#: ../open-infrastructure-storage-tools.templates:8001 msgid "25" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "cephfs-snap weekly:" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "Please specify the number of weekly snapshots that should be kept." msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "" "Depending on the use case a reasonable default might be to keep weekly " "snapshots for 6 months, means: (6 * 4) + 1 = 25" @@ -190,31 +190,31 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:8002 +#: ../open-infrastructure-storage-tools.templates:8002 msgid "If unsure, leave empty (no automatic weekly snapshot rotation)." msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:9001 +#: ../open-infrastructure-storage-tools.templates:9001 msgid "13" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "cephfs-snap monthly:" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "Please specify the number of monthly snapshots that should be kept." msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "" "Depending on the use case a reasonable default might be to keep monthly " "snapshots for 1 year, means: (12 * 1) + 1 = 13" @@ -222,31 +222,31 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:9002 +#: ../open-infrastructure-storage-tools.templates:9002 msgid "If unsure, leave empty (no automatic monthly snapshot rotation)." msgstr "" #. Type: string #. Default -#: ../open-infrastructure-ceph-tools.templates:10001 +#: ../open-infrastructure-storage-tools.templates:10001 msgid "11" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "cephfs-snap yearly:" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "Please specify the number of yearly snapshots that should be kept." msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "" "Depending on the use case a reasonable default might be to keep yearly " "snapshots for 10 years, means: (10 * 1) + 1 = 11" @@ -254,19 +254,19 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:10002 +#: ../open-infrastructure-storage-tools.templates:10002 msgid "If unsure, leave empty (no automatic yearly snapshot rotation)." msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "IRC notifications:" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "" "The cephfs-snap command can send IRC notifications via irker to one or more " "(whitespace separated) IRC channels." @@ -274,7 +274,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "" "The following example will send IRC notifications to the open-infrastructure " "channel on irc.oftc.net:" @@ -282,12 +282,12 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid " irc://irc.oftc.net:6668/open-infrastructure" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-ceph-tools.templates:11002 +#: ../open-infrastructure-storage-tools.templates:11002 msgid "If unsure, leave empty (default)." msgstr "" diff --git a/debian/rules b/debian/rules index 5e57034..990aa1f 100755 --- a/debian/rules +++ b/debian/rules @@ -1,6 +1,6 @@ #!/usr/bin/make -f -PACKAGE := ceph-tools +PACKAGE := storage-tools %: dh ${@} --with apache2 @@ -9,7 +9,7 @@ override_dh_auto_build: # disabled override_dh_auto_install: - dh_auto_install -- DESTDIR=$(CURDIR)/debian/open-infrastructure-ceph-tools + dh_auto_install -- DESTDIR=$(CURDIR)/debian/open-infrastructure-storage-tools rm -f debian/open-infrastructure-$(PACKAGE)/usr/share/doc/storage-tools/CHANGELOG.txt rm -f debian/open-infrastructure-$(PACKAGE)/usr/share/doc/storage-tools/LICENSE.txt diff --git a/debian/source.lintian-overrides b/debian/source.lintian-overrides index fbaf66b..6275811 100644 --- a/debian/source.lintian-overrides +++ b/debian/source.lintian-overrides @@ -1,2 +1,2 @@ # false positives on symlinks -open-infrastructure-ceph-tools source: source-contains-unsafe-symlink +open-infrastructure-storage-tools source: source-contains-unsafe-symlink -- cgit v1.2.3