From c63767cdee7fb4fcf625ec57b6cd6360ef82bdbb Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 2 Feb 2019 09:45:45 +0100 Subject: Renaming binary package to open-infrastructure-ceph-tools for consistency and future-proofing. Signed-off-by: Daniel Baumann --- debian/control | 20 ++- 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 | 138 +++++++++++++++++++++ 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 | 138 --------------------- 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/fr.po | 90 +++++++------- debian/po/nl.po | 90 +++++++------- debian/po/pt.po | 90 +++++++------- debian/po/ru.po | 90 +++++++------- debian/po/templates.pot | 90 +++++++------- debian/rules | 10 +- debian/source.lintian-overrides | 2 +- 22 files changed, 637 insertions(+), 625 deletions(-) create mode 100644 debian/open-infrastructure-ceph-tools.NEWS create mode 100644 debian/open-infrastructure-ceph-tools.config create mode 100644 debian/open-infrastructure-ceph-tools.lintian-overrides create mode 100755 debian/open-infrastructure-ceph-tools.postinst create mode 100755 debian/open-infrastructure-ceph-tools.postrm create mode 100644 debian/open-infrastructure-ceph-tools.templates delete mode 100644 debian/open-infrastructure-storage-tools.NEWS delete mode 100644 debian/open-infrastructure-storage-tools.config delete mode 100644 debian/open-infrastructure-storage-tools.lintian-overrides delete mode 100755 debian/open-infrastructure-storage-tools.postinst delete mode 100755 debian/open-infrastructure-storage-tools.postrm delete mode 100644 debian/open-infrastructure-storage-tools.templates diff --git a/debian/control b/debian/control index e308551..7dc5329 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-storage-tools +Package: open-infrastructure-ceph-tools Section: admin Architecture: all Depends: @@ -37,13 +37,25 @@ Suggests: # cephfs-snap irker, Provides: - storage-tools, + ceph-tools, Enhances: ceph, -Description: Additional utilities to manage storage related tasks - storage-tools contains the following tools: +Description: Additional utilities to manage Ceph + ceph-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 +Architecture: all +Depends: + open-infrastructure-ceph-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. + . + This package can be purged at anytime once the open-infrastructure-ceph-tools + package has been installed. diff --git a/debian/open-infrastructure-ceph-tools.NEWS b/debian/open-infrastructure-ceph-tools.NEWS new file mode 100644 index 0000000..b11e2ca --- /dev/null +++ b/debian/open-infrastructure-ceph-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-ceph-tools.config b/debian/open-infrastructure-ceph-tools.config new file mode 100644 index 0000000..fc89f3a --- /dev/null +++ b/debian/open-infrastructure-ceph-tools.config @@ -0,0 +1,68 @@ +#!/bin/sh + +set -e + +CONFFILE="/etc/default/ceph-tools" + +. /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 new file mode 100644 index 0000000..b503980 --- /dev/null +++ b/debian/open-infrastructure-ceph-tools.lintian-overrides @@ -0,0 +1,2 @@ +# 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 new file mode 100755 index 0000000..6e895b6 --- /dev/null +++ b/debian/open-infrastructure-ceph-tools.postinst @@ -0,0 +1,138 @@ +#!/bin/sh + +set -e + +CONFFILE="/etc/default/ceph-tools" + +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 + +cat > "${CONFFILE}" << EOF +# /etc/default/ceph-tools + +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 new file mode 100755 index 0000000..680751c --- /dev/null +++ b/debian/open-infrastructure-ceph-tools.postrm @@ -0,0 +1,22 @@ +#!/bin/sh + +set -e + +case "${1}" in + purge) + rm -f /etc/default/ceph-tools + ;; + + 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 new file mode 100644 index 0000000..f1fa09b --- /dev/null +++ b/debian/open-infrastructure-ceph-tools.templates @@ -0,0 +1,105 @@ +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 deleted file mode 100644 index b11e2ca..0000000 --- a/debian/open-infrastructure-storage-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-storage-tools.config b/debian/open-infrastructure-storage-tools.config deleted file mode 100644 index daf26c6..0000000 --- a/debian/open-infrastructure-storage-tools.config +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/sh - -set -e - -CONFFILE="/etc/default/storage-tools" - -. /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 deleted file mode 100644 index 82c4a94..0000000 --- a/debian/open-infrastructure-storage-tools.lintian-overrides +++ /dev/null @@ -1,2 +0,0 @@ -# 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 deleted file mode 100755 index e207f8f..0000000 --- a/debian/open-infrastructure-storage-tools.postinst +++ /dev/null @@ -1,138 +0,0 @@ -#!/bin/sh - -set -e - -CONFFILE="/etc/default/storage-tools" - -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 - -cat > "${CONFFILE}" << EOF -# /etc/default/storage-tools - -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 deleted file mode 100755 index 3efff27..0000000 --- a/debian/open-infrastructure-storage-tools.postrm +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -set -e - -case "${1}" in - purge) - rm -f /etc/default/storage-tools - ;; - - 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 deleted file mode 100644 index 3c024f3..0000000 --- a/debian/open-infrastructure-storage-tools.templates +++ /dev/null @@ -1,105 +0,0 @@ -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 600c844..130fe71 100644 --- a/debian/po/POTFILES.in +++ b/debian/po/POTFILES.in @@ -1 +1 @@ -[type: gettext/rfc822deb] open-infrastructure-storage-tools.templates +[type: gettext/rfc822deb] open-infrastructure-ceph-tools.templates diff --git a/debian/po/de.po b/debian/po/de.po index 016d7ee..efb2a43 100644 --- a/debian/po/de.po +++ b/debian/po/de.po @@ -19,19 +19,19 @@ msgstr "" #. Type: title #. Description -#: ../open-infrastructure-storage-tools.templates:1001 -msgid "storage-tools: Setup" -msgstr "storage-tools: Einrichtung" +#: ../open-infrastructure-ceph-tools.templates:1001 +msgid "ceph-tools: Setup" +msgstr "ceph-tools: Einrichtung" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:2001 +#: ../open-infrastructure-ceph-tools.templates:2001 msgid "ceph-log:" msgstr "ceph-log:" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:2001 +#: ../open-infrastructure-ceph-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-storage-tools.templates:2001 +#: ../open-infrastructure-ceph-tools.templates:2001 msgid "Should ceph-log be enabled?" msgstr "Soll ceph-log aktiviert werden?" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:3001 +#: ../open-infrastructure-ceph-tools.templates:3001 msgid "ceph-info:" msgstr "ceph-info:" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:3001 +#: ../open-infrastructure-ceph-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-storage-tools.templates:3001 +#: ../open-infrastructure-ceph-tools.templates:3001 msgid "Should ceph-info be enabled?" msgstr "Soll ceph-info aktiviert werden?" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:4001 +#: ../open-infrastructure-ceph-tools.templates:4001 msgid "cephfs-snap:" msgstr "cephfs-snap:" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:4001 +#: ../open-infrastructure-ceph-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-storage-tools.templates:4001 +#: ../open-infrastructure-ceph-tools.templates:4001 msgid "Should cephfs-snap be enabled?" msgstr "Soll cephfs-snap aktiviert werden?" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:5002 +#: ../open-infrastructure-ceph-tools.templates:5002 msgid "cephfs-snap directories:" msgstr "cephfs-snap-Verzeichnisse:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:5002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:5002 +#: ../open-infrastructure-ceph-tools.templates:5002 msgid "If unsure, leave empty." msgstr "Wenn Sie unsicher sind, geben Sie nichts ein." #. Type: string #. Default -#: ../open-infrastructure-storage-tools.templates:6001 +#: ../open-infrastructure-ceph-tools.templates:6001 msgid "169" msgstr "169" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-tools.templates:6002 msgid "cephfs-snap hourly:" msgstr "cephfs-snap stündlich:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:7001 +#: ../open-infrastructure-ceph-tools.templates:7001 msgid "32" msgstr "32" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-tools.templates:7002 msgid "cephfs-snap daily:" msgstr "cephfs-snap täglich:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:8001 +#: ../open-infrastructure-ceph-tools.templates:8001 msgid "25" msgstr "25" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-tools.templates:8002 msgid "cephfs-snap weekly:" msgstr "cephfs-snap wöchentlich:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:9001 +#: ../open-infrastructure-ceph-tools.templates:9001 msgid "13" msgstr "13" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-tools.templates:9002 msgid "cephfs-snap monthly:" msgstr "cephfs-snap monatlich:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:10001 +#: ../open-infrastructure-ceph-tools.templates:10001 msgid "11" msgstr "11" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-tools.templates:10002 msgid "cephfs-snap yearly:" msgstr "cephfs-snap jährlich:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-tools.templates:11002 msgid "IRC notifications:" msgstr "IRC-Benachrichtigungen:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-tools.templates:11002 msgid " irc://irc.oftc.net:6668/open-infrastructure" msgstr " irc://irc.oftc.net:6668/open-infrastructure" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-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/fr.po b/debian/po/fr.po index ecbd717..4f70ef1 100644 --- a/debian/po/fr.po +++ b/debian/po/fr.po @@ -18,19 +18,19 @@ msgstr "" #. Type: title #. Description -#: ../open-infrastructure-storage-tools.templates:1001 -msgid "storage-tools: Setup" -msgstr "Storage-tools : configuration" +#: ../open-infrastructure-ceph-tools.templates:1001 +msgid "ceph-tools: Setup" +msgstr "Ceph-tools : configuration" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:2001 +#: ../open-infrastructure-ceph-tools.templates:2001 msgid "ceph-log:" msgstr "Ceph-log :" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:2001 +#: ../open-infrastructure-ceph-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 " @@ -38,19 +38,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:2001 +#: ../open-infrastructure-ceph-tools.templates:2001 msgid "Should ceph-log be enabled?" msgstr "Faut-il activer ceph-log ?" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:3001 +#: ../open-infrastructure-ceph-tools.templates:3001 msgid "ceph-info:" msgstr "Ceph-info :" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:3001 +#: ../open-infrastructure-ceph-tools.templates:3001 #, fuzzy #| msgid "" #| "ceph-info shows Ceph cluster information as a website, see ceph-info(1)." @@ -62,19 +62,19 @@ msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:3001 +#: ../open-infrastructure-ceph-tools.templates:3001 msgid "Should ceph-info be enabled?" msgstr "Faut-il activer ceph-info ?" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:4001 +#: ../open-infrastructure-ceph-tools.templates:4001 msgid "cephfs-snap:" msgstr "Cephfs-snap :" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:4001 +#: ../open-infrastructure-ceph-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-storage-tools.templates:4001 +#: ../open-infrastructure-ceph-tools.templates:4001 msgid "Should cephfs-snap be enabled?" msgstr "Faut-il activer cephfs-snap ?" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:5002 +#: ../open-infrastructure-ceph-tools.templates:5002 msgid "cephfs-snap directories:" msgstr "Répertoires de cephfs-snap :" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:5002 +#: ../open-infrastructure-ceph-tools.templates:5002 msgid "" "Please specify the directories (space separated) where CephFS are mounted " "that should be snapshoted." @@ -104,13 +104,13 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:5002 +#: ../open-infrastructure-ceph-tools.templates:5002 msgid "If unsure, leave empty." msgstr "En cas de doute, laisser la ligne vide." #. Type: string #. Default -#: ../open-infrastructure-storage-tools.templates:6001 +#: ../open-infrastructure-ceph-tools.templates:6001 #, fuzzy #| msgid "168" msgid "169" @@ -118,19 +118,19 @@ msgstr "168" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-tools.templates:6002 msgid "cephfs-snap hourly:" msgstr "Cephfs-snap hourly :" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-tools.templates:6002 msgid "Please specify the number of hourly snapshots that should be kept." msgstr "Veuillez indiquer le nombre d’instantanés horaires à conserver." #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-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" @@ -140,7 +140,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-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 " @@ -148,25 +148,25 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-storage-tools.templates:7001 +#: ../open-infrastructure-ceph-tools.templates:7001 msgid "32" msgstr "32" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-tools.templates:7002 msgid "cephfs-snap daily:" msgstr "Cephfs-snap daily :" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-tools.templates:7002 msgid "Please specify the number of daily snapshots that should be kept." msgstr "Veuillez indiquer le nombre d’instantanés journaliers à conserver." #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-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 " @@ -184,25 +184,25 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-storage-tools.templates:8001 +#: ../open-infrastructure-ceph-tools.templates:8001 msgid "25" msgstr "25" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-tools.templates:8002 msgid "cephfs-snap weekly:" msgstr "Cephfs-snap weekly :" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-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,7 +213,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-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 " @@ -221,25 +221,25 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-storage-tools.templates:9001 +#: ../open-infrastructure-ceph-tools.templates:9001 msgid "13" msgstr "13" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-tools.templates:9002 msgid "cephfs-snap monthly:" msgstr "Cephfs-snap monthly :" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-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" @@ -249,7 +249,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-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 " @@ -257,25 +257,25 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-storage-tools.templates:10001 +#: ../open-infrastructure-ceph-tools.templates:10001 msgid "11" msgstr "11" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-tools.templates:10002 msgid "cephfs-snap yearly:" msgstr "cephfs-snap yearly :" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-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" @@ -285,7 +285,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-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 " @@ -293,13 +293,13 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-tools.templates:11002 msgid "IRC notifications:" msgstr "Notifications IRC :" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-tools.templates:11002 msgid "" "The cephfs-snap command can send IRC notifications via irker to one or more " "(whitespace separated) IRC channels." @@ -309,7 +309,7 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-tools.templates:11002 msgid "" "The following example will send IRC notifications to the open-infrastructure " "channel on irc.oftc.net:" @@ -319,12 +319,12 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-tools.templates:11002 msgid " irc://irc.oftc.net:6668/open-infrastructure" msgstr " irc://irc.oftc.net:6668/open-infrastructure" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-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 34c4db5..e2a2ae3 100644 --- a/debian/po/nl.po +++ b/debian/po/nl.po @@ -18,19 +18,19 @@ msgstr "" #. Type: title #. Description -#: ../open-infrastructure-storage-tools.templates:1001 -msgid "storage-tools: Setup" -msgstr "storage-tools: Instellingen" +#: ../open-infrastructure-ceph-tools.templates:1001 +msgid "ceph-tools: Setup" +msgstr "ceph-tools: Instellingen" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:2001 +#: ../open-infrastructure-ceph-tools.templates:2001 msgid "ceph-log:" msgstr "ceph-log:" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:2001 +#: ../open-infrastructure-ceph-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-storage-tools.templates:2001 +#: ../open-infrastructure-ceph-tools.templates:2001 msgid "Should ceph-log be enabled?" msgstr "Moet ceph-log geactiveerd worden?" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:3001 +#: ../open-infrastructure-ceph-tools.templates:3001 msgid "ceph-info:" msgstr "ceph-info:" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:3001 +#: ../open-infrastructure-ceph-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-storage-tools.templates:3001 +#: ../open-infrastructure-ceph-tools.templates:3001 msgid "Should ceph-info be enabled?" msgstr "Moet ceph-info geactiveerd worden?" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:4001 +#: ../open-infrastructure-ceph-tools.templates:4001 msgid "cephfs-snap:" msgstr "cephfs-snap:" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:4001 +#: ../open-infrastructure-ceph-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-storage-tools.templates:4001 +#: ../open-infrastructure-ceph-tools.templates:4001 msgid "Should cephfs-snap be enabled?" msgstr "Moet cephfs-snap geactiveerd worden?" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:5002 +#: ../open-infrastructure-ceph-tools.templates:5002 msgid "cephfs-snap directories:" msgstr "mappen voor cephfs-snap:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:5002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:5002 +#: ../open-infrastructure-ceph-tools.templates:5002 msgid "If unsure, leave empty." msgstr "Laat leeg bij twijfel." #. Type: string #. Default -#: ../open-infrastructure-storage-tools.templates:6001 +#: ../open-infrastructure-ceph-tools.templates:6001 msgid "169" msgstr "169" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-tools.templates:6002 msgid "cephfs-snap hourly:" msgstr "cephfs-snap met tussenpozen van een uur:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:7001 +#: ../open-infrastructure-ceph-tools.templates:7001 msgid "32" msgstr "32" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-tools.templates:7002 msgid "cephfs-snap daily:" msgstr "dagelijkse cephfs-snap:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:8001 +#: ../open-infrastructure-ceph-tools.templates:8001 msgid "25" msgstr "25" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-tools.templates:8002 msgid "cephfs-snap weekly:" msgstr "wekelijkse cephfs-snap:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:9001 +#: ../open-infrastructure-ceph-tools.templates:9001 msgid "13" msgstr "13" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-tools.templates:9002 msgid "cephfs-snap monthly:" msgstr "maandelijkse cephfs-snap:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:10001 +#: ../open-infrastructure-ceph-tools.templates:10001 msgid "11" msgstr "11" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-tools.templates:10002 msgid "cephfs-snap yearly:" msgstr "jaarlijkse cephfs-snap:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-tools.templates:11002 msgid "IRC notifications:" msgstr "Kennisgeving via IRC:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-tools.templates:11002 msgid " irc://irc.oftc.net:6668/open-infrastructure" msgstr " irc://irc.oftc.net:6668/open-infrastructure" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-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 3e6b824..59b65ae 100644 --- a/debian/po/pt.po +++ b/debian/po/pt.po @@ -18,19 +18,19 @@ msgstr "" #. Type: title #. Description -#: ../open-infrastructure-storage-tools.templates:1001 -msgid "storage-tools: Setup" -msgstr "storage-tools: Configuração" +#: ../open-infrastructure-ceph-tools.templates:1001 +msgid "ceph-tools: Setup" +msgstr "ceph-tools: Configuração" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:2001 +#: ../open-infrastructure-ceph-tools.templates:2001 msgid "ceph-log:" msgstr "ceph-log:" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:2001 +#: ../open-infrastructure-ceph-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-storage-tools.templates:2001 +#: ../open-infrastructure-ceph-tools.templates:2001 msgid "Should ceph-log be enabled?" msgstr "Deve o ceph-log ser activado?" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:3001 +#: ../open-infrastructure-ceph-tools.templates:3001 msgid "ceph-info:" msgstr "ceph-info:" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:3001 +#: ../open-infrastructure-ceph-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-storage-tools.templates:3001 +#: ../open-infrastructure-ceph-tools.templates:3001 msgid "Should ceph-info be enabled?" msgstr "Deve o ceph-info ser activado?" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:4001 +#: ../open-infrastructure-ceph-tools.templates:4001 msgid "cephfs-snap:" msgstr "cephfs-snap:" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:4001 +#: ../open-infrastructure-ceph-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-storage-tools.templates:4001 +#: ../open-infrastructure-ceph-tools.templates:4001 msgid "Should cephfs-snap be enabled?" msgstr "Deve o cephfs-snap ser activado?" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:5002 +#: ../open-infrastructure-ceph-tools.templates:5002 msgid "cephfs-snap directories:" msgstr "Directórios do cephfs-snap:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:5002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:5002 +#: ../open-infrastructure-ceph-tools.templates:5002 msgid "If unsure, leave empty." msgstr "Se tem dúvidas, deixe este campo vazio." #. Type: string #. Default -#: ../open-infrastructure-storage-tools.templates:6001 +#: ../open-infrastructure-ceph-tools.templates:6001 msgid "169" msgstr "169" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-tools.templates:6002 msgid "cephfs-snap hourly:" msgstr "cephfs-snap de hora a hora:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:7001 +#: ../open-infrastructure-ceph-tools.templates:7001 msgid "32" msgstr "32" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-tools.templates:7002 msgid "cephfs-snap daily:" msgstr "cephfs-snap diária:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:8001 +#: ../open-infrastructure-ceph-tools.templates:8001 msgid "25" msgstr "25" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-tools.templates:8002 msgid "cephfs-snap weekly:" msgstr "cephfs-snap semanal:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:9001 +#: ../open-infrastructure-ceph-tools.templates:9001 msgid "13" msgstr "13" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-tools.templates:9002 msgid "cephfs-snap monthly:" msgstr "cephfs-snap mensal:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:10001 +#: ../open-infrastructure-ceph-tools.templates:10001 msgid "11" msgstr "11" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-tools.templates:10002 msgid "cephfs-snap yearly:" msgstr "cephfs-snap anual:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-tools.templates:11002 msgid "IRC notifications:" msgstr "Notificações IRC:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-tools.templates:11002 msgid " irc://irc.oftc.net:6668/open-infrastructure" msgstr " irc://irc.oftc.net:6668/open-infrastructure" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-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/ru.po b/debian/po/ru.po index 7d467a8..e03d40c 100644 --- a/debian/po/ru.po +++ b/debian/po/ru.po @@ -19,37 +19,37 @@ msgstr "" #. Type: title #. Description -#: ../open-infrastructure-storage-tools.templates:1001 -msgid "storage-tools: Setup" -msgstr "storage-tools: настройка" +#: ../open-infrastructure-ceph-tools.templates:1001 +msgid "ceph-tools: Setup" +msgstr "ceph-tools: настройка" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:2001 +#: ../open-infrastructure-ceph-tools.templates:2001 msgid "ceph-log:" msgstr "ceph-log:" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:2001 +#: ../open-infrastructure-ceph-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-storage-tools.templates:2001 +#: ../open-infrastructure-ceph-tools.templates:2001 msgid "Should ceph-log be enabled?" msgstr "Следует включить ceph-log?" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:3001 +#: ../open-infrastructure-ceph-tools.templates:3001 msgid "ceph-info:" msgstr "ceph-info:" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:3001 +#: ../open-infrastructure-ceph-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-storage-tools.templates:3001 +#: ../open-infrastructure-ceph-tools.templates:3001 msgid "Should ceph-info be enabled?" msgstr "Следует включить ceph-info?" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:4001 +#: ../open-infrastructure-ceph-tools.templates:4001 msgid "cephfs-snap:" msgstr "cephfs-snap:" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:4001 +#: ../open-infrastructure-ceph-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-storage-tools.templates:4001 +#: ../open-infrastructure-ceph-tools.templates:4001 msgid "Should cephfs-snap be enabled?" msgstr "Следует включить cephfs-snap?" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:5002 +#: ../open-infrastructure-ceph-tools.templates:5002 msgid "cephfs-snap directories:" msgstr "Каталоги cephfs-snap:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:5002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:5002 +#: ../open-infrastructure-ceph-tools.templates:5002 msgid "If unsure, leave empty." msgstr "Если вы не уверены, то оставьте это поле пустым." #. Type: string #. Default -#: ../open-infrastructure-storage-tools.templates:6001 +#: ../open-infrastructure-ceph-tools.templates:6001 msgid "169" msgstr "169" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-tools.templates:6002 msgid "cephfs-snap hourly:" msgstr "cephfs-snap раз в час:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-tools.templates:6002 msgid "Please specify the number of hourly snapshots that should be kept." msgstr "Укажите число почасовых срезов, которые следует хранить." #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-tools.templates:6002 msgid "If unsure, leave empty (no automatic hourly snapshot rotation)." msgstr "" "Если вы не уверены, то оставьте это поле пустым (автоматическая часовая " @@ -142,25 +142,25 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-storage-tools.templates:7001 +#: ../open-infrastructure-ceph-tools.templates:7001 msgid "32" msgstr "32" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-tools.templates:7002 msgid "cephfs-snap daily:" msgstr "cephfs-snap раз в день:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-tools.templates:7002 msgid "Please specify the number of daily snapshots that should be kept." msgstr "Укажите число ежедневных срезов, которые следует хранить." #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-tools.templates:7002 msgid "If unsure, leave empty (no automatic daily snapshot rotation)." msgstr "" "Если вы не уверены, то оставьте это поле пустым (автоматическая ежеджевная " @@ -178,25 +178,25 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-storage-tools.templates:8001 +#: ../open-infrastructure-ceph-tools.templates:8001 msgid "25" msgstr "25" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-tools.templates:8002 msgid "cephfs-snap weekly:" msgstr "cephfs-snap раз в неделю:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-tools.templates:8002 msgid "Please specify the number of weekly snapshots that should be kept." msgstr "Укажите число еженедельных срезов, которые следует хранить." #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-tools.templates:8002 msgid "If unsure, leave empty (no automatic weekly snapshot rotation)." msgstr "" "Если вы не уверены, то оставьте это поле пустым (автоматическая еженедельная " @@ -214,25 +214,25 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-storage-tools.templates:9001 +#: ../open-infrastructure-ceph-tools.templates:9001 msgid "13" msgstr "13" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-tools.templates:9002 msgid "cephfs-snap monthly:" msgstr "cephfs-snap раз в месяц:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-tools.templates:9002 msgid "Please specify the number of monthly snapshots that should be kept." msgstr "Укажите число ежемесячных срезов, которые следует хранить." #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-tools.templates:9002 msgid "If unsure, leave empty (no automatic monthly snapshot rotation)." msgstr "" "Если вы не уверены, то оставьте это поле пустым (автоматическая ежемесячная " @@ -250,25 +250,25 @@ msgstr "" #. Type: string #. Default -#: ../open-infrastructure-storage-tools.templates:10001 +#: ../open-infrastructure-ceph-tools.templates:10001 msgid "11" msgstr "11" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-tools.templates:10002 msgid "cephfs-snap yearly:" msgstr "cephfs-snap раз в год:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-tools.templates:10002 msgid "Please specify the number of yearly snapshots that should be kept." msgstr "Укажите число ежегодных срезов, которые следует хранить." #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-tools.templates:10002 msgid "If unsure, leave empty (no automatic yearly snapshot rotation)." msgstr "" "Если вы не уверены, то оставьте это поле пустым (автоматическая ежегодная " @@ -286,13 +286,13 @@ msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-tools.templates:11002 msgid "IRC notifications:" msgstr "IRC-уведомления:" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-tools.templates:11002 msgid " irc://irc.oftc.net:6668/open-infrastructure" msgstr " irc://irc.oftc.net:6668/open-infrastructure" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-tools.templates:11002 msgid "If unsure, leave empty (default)." msgstr "Если вы не уверены, то оставьте это поле пустым (по умолчанию)." diff --git a/debian/po/templates.pot b/debian/po/templates.pot index d85935c..b51598e 100644 --- a/debian/po/templates.pot +++ b/debian/po/templates.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: open-infrastructure-storage-tools\n" "Report-Msgid-Bugs-To: open-infrastructure-storage-tools@packages.debian.org\n" -"POT-Creation-Date: 2017-04-09 19:17+0200\n" +"POT-Creation-Date: 2019-02-02 09:37+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -19,74 +19,74 @@ msgstr "" #. Type: title #. Description -#: ../open-infrastructure-storage-tools.templates:1001 -msgid "storage-tools: Setup" +#: ../open-infrastructure-ceph-tools.templates:1001 +msgid "ceph-tools: Setup" msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:2001 +#: ../open-infrastructure-ceph-tools.templates:2001 msgid "ceph-log:" msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:2001 +#: ../open-infrastructure-ceph-tools.templates:2001 msgid "ceph-log stores Ceph cluster log as a logfile, see ceph-log(1)." msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:2001 +#: ../open-infrastructure-ceph-tools.templates:2001 msgid "Should ceph-log be enabled?" msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:3001 +#: ../open-infrastructure-ceph-tools.templates:3001 msgid "ceph-info:" msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:3001 +#: ../open-infrastructure-ceph-tools.templates:3001 msgid "" "ceph-info shows Ceph cluster information as a HTML page, see ceph-info(1)." msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:3001 +#: ../open-infrastructure-ceph-tools.templates:3001 msgid "Should ceph-info be enabled?" msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:4001 +#: ../open-infrastructure-ceph-tools.templates:4001 msgid "cephfs-snap:" msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:4001 +#: ../open-infrastructure-ceph-tools.templates:4001 msgid "cephfs-snap creates CephFS snapshots periodically, see cephfs-snap(1)." msgstr "" #. Type: boolean #. Description -#: ../open-infrastructure-storage-tools.templates:4001 +#: ../open-infrastructure-ceph-tools.templates:4001 msgid "Should cephfs-snap be enabled?" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:5002 +#: ../open-infrastructure-ceph-tools.templates:5002 msgid "cephfs-snap directories:" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:5002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:5002 +#: ../open-infrastructure-ceph-tools.templates:5002 msgid "If unsure, leave empty." msgstr "" #. Type: string #. Default -#: ../open-infrastructure-storage-tools.templates:6001 +#: ../open-infrastructure-ceph-tools.templates:6001 msgid "169" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-tools.templates:6002 msgid "cephfs-snap hourly:" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-tools.templates:6002 msgid "Please specify the number of hourly snapshots that should be kept." msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:6002 +#: ../open-infrastructure-ceph-tools.templates:6002 msgid "If unsure, leave empty (no automatic hourly snapshot rotation)." msgstr "" #. Type: string #. Default -#: ../open-infrastructure-storage-tools.templates:7001 +#: ../open-infrastructure-ceph-tools.templates:7001 msgid "32" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-tools.templates:7002 msgid "cephfs-snap daily:" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-tools.templates:7002 msgid "Please specify the number of daily snapshots that should be kept." msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:7002 +#: ../open-infrastructure-ceph-tools.templates:7002 msgid "If unsure, leave empty (no automatic daily snapshot rotation)." msgstr "" #. Type: string #. Default -#: ../open-infrastructure-storage-tools.templates:8001 +#: ../open-infrastructure-ceph-tools.templates:8001 msgid "25" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-tools.templates:8002 msgid "cephfs-snap weekly:" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-tools.templates:8002 msgid "Please specify the number of weekly snapshots that should be kept." msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:8002 +#: ../open-infrastructure-ceph-tools.templates:8002 msgid "If unsure, leave empty (no automatic weekly snapshot rotation)." msgstr "" #. Type: string #. Default -#: ../open-infrastructure-storage-tools.templates:9001 +#: ../open-infrastructure-ceph-tools.templates:9001 msgid "13" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-tools.templates:9002 msgid "cephfs-snap monthly:" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-tools.templates:9002 msgid "Please specify the number of monthly snapshots that should be kept." msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:9002 +#: ../open-infrastructure-ceph-tools.templates:9002 msgid "If unsure, leave empty (no automatic monthly snapshot rotation)." msgstr "" #. Type: string #. Default -#: ../open-infrastructure-storage-tools.templates:10001 +#: ../open-infrastructure-ceph-tools.templates:10001 msgid "11" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-tools.templates:10002 msgid "cephfs-snap yearly:" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-tools.templates:10002 msgid "Please specify the number of yearly snapshots that should be kept." msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:10002 +#: ../open-infrastructure-ceph-tools.templates:10002 msgid "If unsure, leave empty (no automatic yearly snapshot rotation)." msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-tools.templates:11002 msgid "IRC notifications:" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-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-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-tools.templates:11002 msgid " irc://irc.oftc.net:6668/open-infrastructure" msgstr "" #. Type: string #. Description -#: ../open-infrastructure-storage-tools.templates:11002 +#: ../open-infrastructure-ceph-tools.templates:11002 msgid "If unsure, leave empty (default)." msgstr "" diff --git a/debian/rules b/debian/rules index 0257615..595bf6d 100755 --- a/debian/rules +++ b/debian/rules @@ -1,6 +1,6 @@ #!/usr/bin/make -f -PACKAGE := storage-tools +PACKAGE := ceph-tools %: dh ${@} --with apache2 @@ -9,12 +9,12 @@ override_dh_auto_build: # disabled override_dh_auto_install: - dh_auto_install + dh_auto_install -- DESTDIR=$(CURDIR)/debian/open-infrastructure-ceph-tools - rm -f debian/open-infrastructure-$(PACKAGE)/usr/share/doc/$(PACKAGE)/CHANGELOG.txt - rm -f debian/open-infrastructure-$(PACKAGE)/usr/share/doc/$(PACKAGE)/LICENSE.txt + 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 - mv debian/open-infrastructure-$(PACKAGE)/usr/share/doc/$(PACKAGE) debian/open-infrastructure-$(PACKAGE)/usr/share/doc/open-infrastructure-$(PACKAGE) + mv debian/open-infrastructure-$(PACKAGE)/usr/share/doc/storage-tools debian/open-infrastructure-$(PACKAGE)/usr/share/doc/open-infrastructure-$(PACKAGE) override_dh_systemd_enable: dh_systemd_enable --name=ceph-log diff --git a/debian/source.lintian-overrides b/debian/source.lintian-overrides index 6275811..fbaf66b 100644 --- a/debian/source.lintian-overrides +++ b/debian/source.lintian-overrides @@ -1,2 +1,2 @@ # false positives on symlinks -open-infrastructure-storage-tools source: source-contains-unsafe-symlink +open-infrastructure-ceph-tools source: source-contains-unsafe-symlink -- cgit v1.2.3