summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorMichael Tokarev <mjt@tls.msk.ru>2014-10-04 18:19:11 +0400
committerMichael Tokarev <mjt@tls.msk.ru>2014-10-04 20:32:00 +0400
commitffb0e126255a6a074519ee458b5d26d6ba40dca1 (patch)
treee743bebc862349a7476e70c4e3f5980c0f596cc6 /debian
parent47db9cc7c7c53ddc81f03803575e39f605f99633 (diff)
removed AUTOSTART variable from /etc/default/mdadm
Diffstat (limited to 'debian')
-rw-r--r--debian/FAQ5
-rw-r--r--debian/README.Debian7
-rw-r--r--debian/changelog2
-rw-r--r--debian/mdadm-raid11
-rw-r--r--debian/mdadm.config2
-rw-r--r--debian/mdadm.postinst7
-rw-r--r--debian/mdadm.templates11
-rw-r--r--debian/po/ca.po23
-rw-r--r--debian/po/cs.po22
-rw-r--r--debian/po/da.po23
-rw-r--r--debian/po/de.po23
-rw-r--r--debian/po/es.po24
-rw-r--r--debian/po/eu.po23
-rw-r--r--debian/po/fi.po22
-rw-r--r--debian/po/fr.po23
-rw-r--r--debian/po/gl.po23
-rw-r--r--debian/po/it.po23
-rw-r--r--debian/po/ja.po22
-rw-r--r--debian/po/nl.po23
-rw-r--r--debian/po/pt.po23
-rw-r--r--debian/po/pt_BR.po31
-rw-r--r--debian/po/ru.po22
-rw-r--r--debian/po/sk.po22
-rw-r--r--debian/po/sv.po22
-rw-r--r--debian/po/templates.pot17
-rw-r--r--debian/po/vi.po23
26 files changed, 7 insertions, 472 deletions
diff --git a/debian/FAQ b/debian/FAQ
index 16e2ba94..325fcb59 100644
--- a/debian/FAQ
+++ b/debian/FAQ
@@ -529,9 +529,8 @@ The latest version of this FAQ is available here:
23. mdadm's init script fails because it cannot find any arrays. What gives?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- If you don't have any arrays on your system, then mdadm's init script will
- fail to assemble them and print a warning. If you don't like that, disable
- AUTOSTART in /etc/default/mdadm.
+ This does not happen anymore, if no arrays present in config file, no arrays
+ will be started.
24. What happened to mdrun? How do I replace it?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
diff --git a/debian/README.Debian b/debian/README.Debian
index f0897ef8..bfca8cb3 100644
--- a/debian/README.Debian
+++ b/debian/README.Debian
@@ -10,10 +10,9 @@ The latest version of this document is available here:
Autostarting devices
~~~~~~~~~~~~~~~~~~~~
The mdadm.conf file controls which devices are to be started automatically by
-mdadm during boot (assuming AUTOSTART is set to true in /etc/default/mdadm),
-and various other parameters about how they are to be started. The file can
-also contain some control parameters for the mdadm monitor daemon. See
-mdadm.conf(5) for more information.
+mdadm during boot, and various other parameters about how they are to be started.
+The file can also contain some control parameters for the mdadm monitor daemon.
+See mdadm.conf(5) for more information.
Note: this only applies to modular kernels. If you use a monolithic kernel,
you can control which devices are started automatically by changing the
diff --git a/debian/changelog b/debian/changelog
index f6e5337c..3b0dc10b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,8 @@ mdadm (3.3.2-2) UNRELEASED; urgency=medium
* removed unneeded lintian-overrides file
* removed examples/mdadd.sh
* removed references to MAIL_TO from /etc/default/mdadm (pre-2.x mdadm)
+ * removed AUTOSTART variable from /etc/default/mdadm
+ (system will start arrays listed in mdadm.conf)
-- Michael Tokarev <mjt@tls.msk.ru> Sat, 04 Oct 2014 15:43:57 +0400
diff --git a/debian/mdadm-raid b/debian/mdadm-raid
index a50c8241..6d4d6a99 100644
--- a/debian/mdadm-raid
+++ b/debian/mdadm-raid
@@ -31,7 +31,6 @@ DEBIANCONFIG=/etc/default/mdadm
test -x "$MDADM" || exit 0
-AUTOSTART=true
STATEDIR=/run/mdadm
test -f $DEBIANCONFIG && . $DEBIANCONFIG
@@ -87,11 +86,6 @@ case "${1:-}" in
start)
PREFIX="Assembling MD array"
- if ! is_true $AUTOSTART && ! is_true ${MDADM_FORCE_AUTOSTART__:-0}; then
- log_notice "disabled in $DEBIANCONFIG"
- exit 0
- fi
-
if [ ! -f /proc/mdstat ] && [ -x "$(command -v modprobe)" ] ; then
modprobe -q md 2>/dev/null || :
fi
@@ -191,11 +185,6 @@ case "${1:-}" in
stop)
PREFIX="Stopping MD array"
- if ! is_true $AUTOSTART; then
- log_notice "disabled in $DEBIANCONFIG"
- exit 0
- fi
-
if [ ! -f /proc/mdstat ]; then
log_problem "no MD subsystem loaded"
exit 0
diff --git a/debian/mdadm.config b/debian/mdadm.config
index 9f0a080b..97352662 100644
--- a/debian/mdadm.config
+++ b/debian/mdadm.config
@@ -17,7 +17,6 @@ db_get mdadm/initrdstart || :
INITRDSTART="$RET"
if [ -s $DEBIANCONFIG ] ; then
- AUTOSTART=true
AUTOCHECK=true
START_DAEMON=true
MAILADDR=root
@@ -27,7 +26,6 @@ if [ -s $DEBIANCONFIG ] ; then
MAILADDR=$(sed -rne 's/^MAILADDR[[:space:]]*([^[:space:]]+).*/\1/p' $CONFIG)
fi
- [ -n "$AUTOSTART" ] && db_set mdadm/autostart "$AUTOSTART"
[ -n "$AUTOCHECK" ] && db_set mdadm/autocheck "$AUTOCHECK"
[ -n "$START_DAEMON" ] && db_set mdadm/start_daemon "$START_DAEMON"
[ -n "$MAILADDR" ] && db_set mdadm/mail_to "$MAILADDR"
diff --git a/debian/mdadm.postinst b/debian/mdadm.postinst
index 9f55b2f9..b05dca30 100644
--- a/debian/mdadm.postinst
+++ b/debian/mdadm.postinst
@@ -54,8 +54,6 @@ case "${1:-}" in
db_get mdadm/initrdstart
INITRDSTART="${RET:-all}"
- db_get mdadm/autostart
- AUTOSTART="${RET:-true}"
db_get mdadm/autocheck
AUTOCHECK="${RET:-true}"
db_get mdadm/start_daemon
@@ -78,11 +76,6 @@ case "${1:-}" in
# 'none' to prevent any array from being started from the initial ramdisk.
INITRDSTART='$INITRDSTART'
-# AUTOSTART:
-# should mdadm start arrays listed in /etc/mdadm/mdadm.conf automatically
-# during boot?
-AUTOSTART=$AUTOSTART
-
# AUTOCHECK:
# should mdadm run periodic redundancy checks over your arrays? See
# /etc/cron.d/mdadm.
diff --git a/debian/mdadm.templates b/debian/mdadm.templates
index 4ff10362..ddf63c76 100644
--- a/debian/mdadm.templates
+++ b/debian/mdadm.templates
@@ -68,17 +68,6 @@ _Description: Start arrays not listed in mdadm.conf?
can simply continue. Alternatively, choose not to continue and enter 'none'
when prompted which arrays to start from the initial ramdisk.
-Template: mdadm/autostart
-Type: boolean
-Default: true
-_Description: Do you want to start MD arrays automatically?
- Once the base system has booted, mdadm can start all MD arrays
- (RAIDs) specified in /etc/mdadm/mdadm.conf which have not yet been
- started. This is recommended unless multiple device (MD) support is
- compiled into the kernel and all partitions are marked as belonging
- to MD arrays, with type 0xfd (as those and only those will be started
- automatically by the kernel).
-
Template: mdadm/autocheck
Type: boolean
Default: true
diff --git a/debian/po/ca.po b/debian/po/ca.po
index 0cfac41d..0710fd90 100644
--- a/debian/po/ca.po
+++ b/debian/po/ca.po
@@ -145,29 +145,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr "Voleu arrencar automàticament les matrius MD?"
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-"«mdadm» pot iniciar totes les matrius MD (RAIDs) especificades a «/etc/mdadm/"
-"mdadm.conf» quan s'hagi arrancat el sistema base, i en el ben entès que "
-"encara no s'hagin arrancat. Això és recomanable a no ser que el suport de "
-"dispositiu múltiple (MD) sigui compilat en el nucli i totes les particions "
-"que formen la matriu MD siguin marcades amb el tipus «0xfd» (donat que "
-"només aquestes seran arrancades de forma automàtica pel nucli)."
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr ""
diff --git a/debian/po/cs.po b/debian/po/cs.po
index d728a725..40e8668c 100644
--- a/debian/po/cs.po
+++ b/debian/po/cs.po
@@ -148,28 +148,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr "Chcete spouštět MD pole automaticky?"
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-"Po zavedení základního systému může mdadm spustit všechna dosud nespuštěná "
-"MD (RAID) pole uvedená v souboru /etc/mdadm/mdadm.conf. Pokud nemáte "
-"zakompilovanou podporu multiple device (MD) přímo v jádře (kdy se všechna MD "
-"pole označená typem oblasti 0xfd spustí zcela automaticky), pravděpodobně "
-"budete chtít tuto možnost povolit."
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr "Má mdadm spouštět měsíční kontroly redundance MD polí?"
diff --git a/debian/po/da.po b/debian/po/da.po
index d33049ef..47294504 100644
--- a/debian/po/da.po
+++ b/debian/po/da.po
@@ -138,29 +138,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr "Ønsker du at starte MD arrays automatisk?"
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-"Når først basissystemet er startet op, kan mdadm starte alle MD arrays "
-"(RAID'er) angivet i /etc/mdadm/mdadm.conf, som endnu ikke er blevet startet. "
-"Dette anbefales med mindre understøttelse af flere enheder (MD) er "
-"kompileret ind i kernen og alle partitioner er markeret som tilhørende MD "
-"arrays, med type 0xfd (da disse og kun disse vil blive startet op automatisk "
-"af kernen)."
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr "Skal mdadm køre månedlig redundanskontrol af MD arrays?"
diff --git a/debian/po/de.po b/debian/po/de.po
index 91e5dc20..e1191e21 100644
--- a/debian/po/de.po
+++ b/debian/po/de.po
@@ -152,29 +152,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr "Mchten Sie die RAID-Verbnde automatisch starten?"
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-"Sobald das Grundsystem hochgefahren ist, kann mdadm alle in /etc/mdadm/mdadm."
-"conf angegebenen MD-Verbnde (RAID) starten, die noch nicht gestartet "
-"wurden. Dies ist empfohlen, es sei denn, die MD-Untersttzung wurde in den "
-"Kernel einkompiliert und alle Partitionen, die zu MD-Verbnden gehren, "
-"wurden mit dem Typ 0xfd markiert (weil diese und nur diese automatisch vom "
-"Kernel gestartet werden)."
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr ""
diff --git a/debian/po/es.po b/debian/po/es.po
index 1547c05c..d8809892 100644
--- a/debian/po/es.po
+++ b/debian/po/es.po
@@ -177,30 +177,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr "Desea iniciar los arrays MD de forma automtica?"
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-"Mdadm puede iniciar todos los arrays MD (RAIDs) especificados en /etc/mdadm/"
-"mdadm.conf una vez se haya arrancado el sistema base, siempre que stos no "
-"se hayan arrancado an. Esto es probablemente lo que desea a no ser que haya "
-"compilado el soporte de dispositivos mltiples (MD, multiple devices) en "
-"el ncleo y marcado todas las particiones que son parte de los arrays MD con "
-"el tipo 0xfd (ya que stas, y slo stas, se arrancarn de forma "
-"automtica por el ncleo)."
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr ""
diff --git a/debian/po/eu.po b/debian/po/eu.po
index 6697f03a..06d8e537 100644
--- a/debian/po/eu.po
+++ b/debian/po/eu.po
@@ -138,29 +138,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr "MD array-ak automatikoki abiarazi nahi al dituzu?"
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-"Behin oinarri sistema abiarazi denean, mdadm-ek /etc/mdadm/mdadm.conf-en "
-"konfiguraturiko eta oraindik abiarazi ez diren MD array (RAID) guztiak "
-"abiarazi ditzake. Hau gomendagarria da ez bada gailu anitzeko (MD) onarpena "
-"kernelan konpilaturik eta partizio guztiak MD array partaide bezala "
-"markaturik badaude, 0xfd mota erabiliaz (horrela hauek eta hauek bakarrik "
-"abiaraziko ditu automatikoki kernelak)."
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr ""
diff --git a/debian/po/fi.po b/debian/po/fi.po
index 2aba304e..688baef0 100644
--- a/debian/po/fi.po
+++ b/debian/po/fi.po
@@ -136,28 +136,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr "Tulisiko MD-pakat käynnistää automaattisesti?"
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-"Kun perusjärjestelmä on käynnistynyt, mdadm voi käynnistää kaikki "
-"tiedostossa /etc/mdadm/mdadm.conf luetellut MD-pakat (RAIDit), joita ei ole "
-"vielä käynnistetty. Tämä on suositeltavaa, paitsi jos MD-tuki on käännetty "
-"ytimeen ja kaikki osiot on merkitty kuulumaan MD-pakkoihin tyypillä 0xfd "
-"(koska ydin käynnistää automaattisesti nämä ja vain nämä)."
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr "Tulisiko mdadm:n tarkistaa kuukausittain MD-pakkojen eheys?"
diff --git a/debian/po/fr.po b/debian/po/fr.po
index f4fb03ad..ce2459c4 100644
--- a/debian/po/fr.po
+++ b/debian/po/fr.po
@@ -150,29 +150,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr "Faut-il démarrer automatiquement les ensembles RAID ?"
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-"Lorsque le système de base a démarré, mdadm peut démarrer tous les ensembles "
-"(RAID) indiqués dans /etc/mdadm/mdadm.conf qui n'ont pas encore été "
-"démarrés. Cela est recommandé, sauf si la gestion MD a été compilée dans le "
-"noyau et que toutes les partitions faisant partie d'un ensemble RAID ont été "
-"marquées avec le type 0xfd (car seul ce type de partition sera démarré "
-"automatiquement par le noyau)."
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr "Faut-il vérifier chaque mois la redondance des ensembles RAID ?"
diff --git a/debian/po/gl.po b/debian/po/gl.po
index 41f5900e..b454e818 100644
--- a/debian/po/gl.po
+++ b/debian/po/gl.po
@@ -137,29 +137,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr "¿Quere iniciar os arrays MD automaticamente?"
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-"Despois do inicio do sistema base, mdadm pode iniciar tódolos arrays MD "
-"(RAIDs) especificados en /etc/mdadm/mdadm.conf que non estean aínda "
-"iniciados. Recoméndase isto a menos que o soporte de dispositivos múltiples "
-"(MD) estea compilado no núcleo e tódalas particións estean marcadas coma "
-"parte de arrays MD, con tipo 0xfd (xa que esas, e só esas, as ha iniciar "
-"automaticamente o núcleo)."
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr ""
diff --git a/debian/po/it.po b/debian/po/it.po
index 59b8c7b8..c2d5285e 100644
--- a/debian/po/it.po
+++ b/debian/po/it.po
@@ -141,29 +141,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr "Avviare gli array MD automaticamente?"
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-"Una volta avviato il sistema di base, mdadm può attivare tutti gli array MD "
-"(RAID) specificati in /etc/mdadm/mdadm.conf non ancora attivi. Questa è la "
-"configurazione consigliata tranne quando il supporto per i device multidisco "
-"(MD) è compilato nel kernel e tutte le partizioni appartenenti agli array MD "
-"sono marcate con tipo 0xfd (come quelle che sono attivate automaticamente "
-"dal kernel)."
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr "Far eseguire a mdadm i controlli mensili di ridondanza sugli array MD?"
diff --git a/debian/po/ja.po b/debian/po/ja.po
index a900d8c1..eeefe8ed 100644
--- a/debian/po/ja.po
+++ b/debian/po/ja.po
@@ -147,28 +147,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr "MD アレイを自動的に起動しますか?"
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-"一旦ベースシステムが起動すると、mdadm は /etc/mdadm/mdadm.conf で指定されたま"
-"だ起動していない全ての MD アレイ (RAID) を起動できます。複数のデバイス (MD) "
-"をサポートするようにカーネルをコンパイルしており、MD アレイのすべてのパーティ"
-"ションをパーティションタイプ 0xfd と設定しない限り、これを推奨します (このよ"
-"うな設定にした場合のみ、アレイは自動的にカーネルから起動されます) 。"
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr "mdadm は、毎月 MD アレイの冗長性チェックを行いますか?"
diff --git a/debian/po/nl.po b/debian/po/nl.po
index 2159cd4a..d3e5f3da 100644
--- a/debian/po/nl.po
+++ b/debian/po/nl.po
@@ -151,29 +151,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr "RAID-apparaten automatisch activeren?"
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-"Nadat het basissysteem eenmaal is opgestart, kan mdadm zorgdragen voor het "
-"activeren van alle RAID-reeksen die voorkomen in /etc/mdadm/mdadm.conf, maar "
-"nog niet zijn geactiveerd. Dit wordt aanbevolen tenzij \"multiple device"
-"\" (MD) ondersteuning is meegecompileerd in de kernel en alle partities die "
-"deel uitmaken van RAID-reeksen zijn gedefinieerd als type 0xfd (aangezien ze "
-"alleen dan automatisch door de kernel geactiveerd zullen worden)."
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr "Maandelijkse redundantiecontrole van RAID-reeksen uitvoeren?"
diff --git a/debian/po/pt.po b/debian/po/pt.po
index 1280a448..e450997a 100644
--- a/debian/po/pt.po
+++ b/debian/po/pt.po
@@ -140,29 +140,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr "Quer iniciar os grupos MD automaticamente?"
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-"Após o arranque do sistema de base, o mdadm pode iniciar todos os grupos MD "
-"(RAIDs) especificados em /etc/mdadm/mdadm.conf, que ainda não tiverem sido "
-"iniciados. Isto é o recomendado a não ser que tenha compilado o suporte para "
-"dispositivos múltiplos (MD) no kernel e marcado todas as partições que são "
-"parte de grupos MD com o tipo 0xfd (apenas estas serão iniciadas "
-"automaticamente pelo kernel)."
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr ""
diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po
index a7f83ea1..118538b8 100644
--- a/debian/po/pt_BR.po
+++ b/debian/po/pt_BR.po
@@ -184,37 +184,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr "Você deseja iniciar os dispositivos MD automaticamente?"
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-#, fuzzy
-#| msgid ""
-#| "Once the base system has come up, mdadm can start all MD arrays (RAIDs) "
-#| "specified in /etc/mdadm/mdadm.conf, which have not yet been started. "
-#| "Unless you have compiled multiple device (MD) support into the kernel and "
-#| "marked all partitions part of MD arrays with type 0xfd (as those and only "
-#| "those will be started automatically by the kernel), this is probably what "
-#| "you want."
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-"Uma vez que o sistema básico esteja disponível, mdadm pode iniciar todos os "
-"dispositivos MD (RAID) especificados em /etc/mdadm/mdadm.conf, que ainda não "
-"foram iniciados. A menos que você tenha compilado o suporte a múltiplos "
-"dispositivos (MD) embutido no kernel e marcado todas as partições que fazem "
-"parte de dispositivos MD com o tipo 0xfd (como as únicas a serem iniciadas "
-"automaticamente pelo kernel), você provavelmente quer ativar esta opção."
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr ""
diff --git a/debian/po/ru.po b/debian/po/ru.po
index a242627e..a4aff77d 100644
--- a/debian/po/ru.po
+++ b/debian/po/ru.po
@@ -152,28 +152,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr "Запускать MD-массивы автоматически?"
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-"После старта базовой системы, mdadm может запустить все MD-массивы (RAIDы), "
-"указанные в файле /etc/mdadm/mdadm.conf, которые ещё не запущены. Нужно "
-"ответить утвердительно, если вы не включили поддержку MD в ядро (в противном "
-"случае ядро само выполняет автоматический запуск MD-массивов из разделов с "
-"типом 0xfd и только с ним)."
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr ""
diff --git a/debian/po/sk.po b/debian/po/sk.po
index c6da3428..5d6d5a50 100644
--- a/debian/po/sk.po
+++ b/debian/po/sk.po
@@ -141,28 +141,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr "Chcete spúšťať polia MD automaticky?"
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-"Po zavedení základného systému môže mdadm spustiť všetky polia MD (RAIDy) "
-"definované v /etc/mdadm/mdadm.conf, ktoré ešte neboli spustené. Toto je "
-"odporúčané, ibaže máte v jadre zakompilovanú podporu multiple device (MD) a "
-"všetky partície sú označené ako patriace do polí MD s typom 0xfd (pretože "
-"tieto a len tieto budú automaticky spúšťané jadrom)."
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr "Má mdadm spúšťať mesačnú kontrolu redundancie polí MD?"
diff --git a/debian/po/sv.po b/debian/po/sv.po
index ca163341..8257c8dd 100644
--- a/debian/po/sv.po
+++ b/debian/po/sv.po
@@ -147,28 +147,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr "Vill du starta MD-kedjor automatiskt?"
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-"Nr grundsystemet har startats upp kan mdadm starta alla MD-kedjor (RAID) "
-"som har angivits i /etc/mdadm/mdadm.conf och som nnu inte har startats. "
-"Detta rekommenderas svida inte std fr multipla enheter (MD) har byggts in "
-"i krnan och alla partitioner markerats som del av MD-kedjor med typen 0xfd "
-"(eftersom de och endast de kommer att startas upp automatiskt av krnan)."
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr "Ska mdadm kra mnatliga redundanskontroller av MD-kedjorna?"
diff --git a/debian/po/templates.pot b/debian/po/templates.pot
index a4a46f8b..beb000aa 100644
--- a/debian/po/templates.pot
+++ b/debian/po/templates.pot
@@ -117,23 +117,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr ""
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr ""
diff --git a/debian/po/vi.po b/debian/po/vi.po
index 19e62679..0e4933ca 100644
--- a/debian/po/vi.po
+++ b/debian/po/vi.po
@@ -143,29 +143,6 @@ msgstr ""
#. Type: boolean
#. Description
-#: ../mdadm.templates:9001
-msgid "Do you want to start MD arrays automatically?"
-msgstr "Bạn có muốn tự động khởi chạy các mảng MD không?"
-
-#. Type: boolean
-#. Description
-#: ../mdadm.templates:9001
-msgid ""
-"Once the base system has booted, mdadm can start all MD arrays (RAIDs) "
-"specified in /etc/mdadm/mdadm.conf which have not yet been started. This is "
-"recommended unless multiple device (MD) support is compiled into the kernel "
-"and all partitions are marked as belonging to MD arrays, with type 0xfd (as "
-"those and only those will be started automatically by the kernel)."
-msgstr ""
-"Một khi hệ thống cơ bản được khởi động thì mdadm có khả năng khởi chạy tất "
-"cả các mảng MD (RAID) được xác định trong tập tin cấu hinh « /etc/mdadm/"
-"mdadm.conf » mà chưa được khởi chạy. Thủ tục này khuyến khích nếu hỗ trợ đa "
-"thiết bị (MD) không được biên dịch vào hát nhân và tất cả các phân vùng được "
-"đánh dấu là thuộc về mảng MD, với kiểu 0xfd (vì chúng, và chỉ chúng sẽ được "
-"tự động khởi chạy bởi hạt nhân).r"
-
-#. Type: boolean
-#. Description
#: ../mdadm.templates:10001
msgid "Should mdadm run monthly redundancy checks of the MD arrays?"
msgstr ""