summaryrefslogtreecommitdiffstats
path: root/perl-install/fs/mount_options.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/fs/mount_options.pm')
-rw-r--r--perl-install/fs/mount_options.pm17
1 files changed, 6 insertions, 11 deletions
diff --git a/perl-install/fs/mount_options.pm b/perl-install/fs/mount_options.pm
index 596c3378d..ce06ef9e2 100644
--- a/perl-install/fs/mount_options.pm
+++ b/perl-install/fs/mount_options.pm
@@ -43,8 +43,6 @@ sub unpack {
$non_defaults->{encrypted} = 1;
- $non_defaults->{supermount} = 1 if $part->{fs_type} =~ /:/ || member($part->{fs_type}, 'auto', @auto_fs);
-
my $defaults = { reverse %$non_defaults };
my %options = map { $_ => '' } keys %$non_defaults;
my @unknown;
@@ -134,8 +132,6 @@ have suidperl(1) installed.)"),
'sync' => N("All I/O to the file system should be done synchronously."),
- 'supermount' => '',
-
'users' => N("Allow every user to mount and umount the file system."),
'user' => N("Allow an ordinary user to mount the file system."),
@@ -163,7 +159,7 @@ sub rationalize {
delete $options->{'codepage='};
}
if (member($part->{mntpoint}, fs::type::directories_needed_to_boot())) {
- foreach (qw(users user noauto supermount)) {
+ foreach (qw(users user noauto)) {
if ($options->{$_}) {
$options->{$_} = 0;
$options->{$_} = 0 foreach qw(nodev noexec nosuid);
@@ -176,16 +172,15 @@ sub rationalize {
sub set_default {
my ($part, %opts) = @_;
- #- opts are: useSupermount security iocharset codepage ignore_is_removable
+ #- opts are: security iocharset codepage ignore_is_removable
my ($options, $unknown) = &unpack($part);
if (!$opts{ignore_is_removable} && $part->{is_removable}
&& !member($part->{mntpoint}, fs::type::directories_needed_to_boot())
&& (!$part->{fs_type} || $part->{fs_type} eq 'auto' || $part->{fs_type} =~ /:/)) {
- $options->{supermount} = $opts{useSupermount} && !($opts{useSupermount} eq 'magicdev' && $part->{media_type} eq 'cdrom');
- $part->{fs_type} = !$options->{supermount} ? 'auto' :
- $part->{media_type} eq 'cdrom' ? 'udf:iso9660' : 'ext2:vfat';
+ $options->{supermount} = 0; #- always disable supermount
+ $part->{fs_type} = 'auto';
$options->{sync} = 1 if $part->{media_type} ne 'cdrom';
}
@@ -240,7 +235,7 @@ sub set_default {
}
# rationalize: no need for user
- if ($options->{autofs} || $options->{supermount}) {
+ if ($options->{autofs}) {
$options->{users} = $options->{user} = 0;
}
@@ -258,7 +253,7 @@ sub set_default {
sub set_all_default {
my ($all_hds, %opts) = @_;
- #- opts are: useSupermount security iocharset codepage
+ #- opts are: security iocharset codepage
foreach my $part (fs::get::really_all_fstab($all_hds)) {
set_default($part, %opts);
o?h=16.62&id=cdb19c8bc1a8990e0c47984139b3184b402a2897'>perl-install/share/po/ca.po2
-rw-r--r--perl-install/share/po/cs.po2
-rw-r--r--perl-install/share/po/cy.po2
-rw-r--r--perl-install/share/po/da.po2
-rw-r--r--perl-install/share/po/de.po2
-rw-r--r--perl-install/share/po/el.po2
-rw-r--r--perl-install/share/po/eo.po2
-rw-r--r--perl-install/share/po/es.po2
-rw-r--r--perl-install/share/po/et.po2
-rw-r--r--perl-install/share/po/eu.po2
-rw-r--r--perl-install/share/po/fa.po2
-rw-r--r--perl-install/share/po/fi.po2
-rw-r--r--perl-install/share/po/fr.po2
-rw-r--r--perl-install/share/po/fur.po2
-rw-r--r--perl-install/share/po/ga.po2
-rw-r--r--perl-install/share/po/gl.po2
-rw-r--r--perl-install/share/po/he.po2
-rw-r--r--perl-install/share/po/hi.po2
-rw-r--r--perl-install/share/po/hr.po2
-rw-r--r--perl-install/share/po/hu.po2
-rw-r--r--perl-install/share/po/id.po2
-rw-r--r--perl-install/share/po/is.po2
-rw-r--r--perl-install/share/po/it.po2
-rw-r--r--perl-install/share/po/ja.po2
-rw-r--r--perl-install/share/po/ko.po2
-rw-r--r--perl-install/share/po/ky.po2
-rw-r--r--perl-install/share/po/lt.po2
-rw-r--r--perl-install/share/po/ltg.po2
-rw-r--r--perl-install/share/po/lv.po2
-rw-r--r--perl-install/share/po/mk.po2
-rw-r--r--perl-install/share/po/mn.po2
-rw-r--r--perl-install/share/po/ms.po2
-rw-r--r--perl-install/share/po/mt.po2
-rw-r--r--perl-install/share/po/nb.po2
-rw-r--r--perl-install/share/po/nl.po2
-rw-r--r--perl-install/share/po/nn.po2
-rw-r--r--perl-install/share/po/pl.po2
-rw-r--r--perl-install/share/po/pt.po2
-rw-r--r--perl-install/share/po/pt_BR.po2
-rw-r--r--perl-install/share/po/ro.po2
-rw-r--r--perl-install/share/po/ru.po2
-rw-r--r--perl-install/share/po/sk.po2
-rw-r--r--perl-install/share/po/sl.po2
-rw-r--r--perl-install/share/po/sq.po2
-rw-r--r--perl-install/share/po/sr.po2
-rw-r--r--perl-install/share/po/sr@Latn.po2
-rw-r--r--perl-install/share/po/sv.po2
-rw-r--r--perl-install/share/po/ta.po2
-rw-r--r--perl-install/share/po/tg.po2
-rw-r--r--perl-install/share/po/th.po2
-rw-r--r--perl-install/share/po/tl.po2
-rw-r--r--perl-install/share/po/tr.po2
-rw-r--r--perl-install/share/po/uk.po2
-rw-r--r--perl-install/share/po/uz.po2
-rw-r--r--perl-install/share/po/uz@Latn.po2
-rw-r--r--perl-install/share/po/vi.po2
-rw-r--r--perl-install/share/po/wa.po2
-rw-r--r--perl-install/share/po/zh_CN.po2
-rw-r--r--perl-install/share/po/zh_TW.po2
68 files changed, 68 insertions, 68 deletions
diff --git a/perl-install/share/po/DrakX.pot b/perl-install/share/po/DrakX.pot
index f0fb4f1f7..5a552c286 100644
--- a/perl-install/share/po/DrakX.pot
+++ b/perl-install/share/po/DrakX.pot
@@ -8996,7 +8996,7 @@ msgstr ""
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr ""
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index e4b75f130..8920299cc 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -10564,7 +10564,7 @@ msgstr "IP-adres moet in 1.2.3.4. formaat wees"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, fuzzy, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "Deurgang IP-adres moet in 1.2.3.4. formaat wees"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po
index ca103956e..836c53842 100644
--- a/perl-install/share/po/am.po
+++ b/perl-install/share/po/am.po
@@ -9324,7 +9324,7 @@ msgstr ""
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr ""
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index c9c8f4ee5..94af2d243 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -10721,7 +10721,7 @@ msgstr "عنوان IP يجب أن يكون بنسق 1.2.3.4"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, fuzzy, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "عنوان البوابات يجب أن تكون على النسق 1.2.3.4"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index b18d08ab0..49e674ecd 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -10695,7 +10695,7 @@ msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, fuzzy, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "Şəbəkə keçişi ünvanı 1.2.3.4 şəklində olmalıdır"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 310690510..b85919501 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -9427,7 +9427,7 @@ msgstr "IP адрас павінен быць у фармаце 1.2.3.4"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, fuzzy, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "IP адрас павінен быць у фармаце 1.2.3.4"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index dae7eefa0..70fbb0550 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -10288,7 +10288,7 @@ msgstr "IP адресът трябва да бъде във формат 1.2.3.4
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, fuzzy, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "Gateway адреса трябва да бъде във формат 1.2.3.4"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po
index e45affe94..292e92c82 100644
--- a/perl-install/share/po/bn.po
+++ b/perl-install/share/po/bn.po
@@ -10102,7 +10102,7 @@ msgstr "IP ঠিকানা 1.2.3.4-এর মত হতে হবে"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, fuzzy, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "গেটওয়ে ঠিকানা 1.2.3.4-এর মত হতে হবে"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index c0b845acf..18e6be7f4 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -10840,7 +10840,7 @@ msgstr "IP adresa treba biti u formatu 1.2.3.4"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, fuzzy, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "Gateway adresa treba biti u formatu 1.2.3.4"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 914127cd7..dbbb7f214 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -10934,7 +10934,7 @@ msgstr "L'adreça IP ha d'estar en format 1.2.3.4"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, fuzzy, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "L'adreça de la passarel·la ha d'estar en format 1.2.3.4"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index c2ef17816..08bacdb58 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -10822,7 +10822,7 @@ msgstr "IP adresa musí být ve formátu 1.2.3.4"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, fuzzy, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "Adresa brány by měla být ve tvaru 1.2.3.4"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index dfc985f32..5c3044063 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -10815,7 +10815,7 @@ msgstr "dylai cyfeiriad IP fod mewn fformat 1.2.3.4"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, fuzzy, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "Dylai cyfeiriad Porth fod mewn fformat 1.2.3.4"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index c8f011fe6..17b86aa14 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -10750,7 +10750,7 @@ msgstr "IP adresse bør have formatet 1.2.3.4"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, fuzzy, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "Gateway-adresse skal have formatet 1.2.3.4"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index a1fcde166..28e812ccf 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -10978,7 +10978,7 @@ msgstr "Die IP-Adresse sollte etwa die Form „192.168.1.42“ haben!"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, fuzzy, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "Die IP-Adresse des Gateways sollte etwa die Form „192.168.1.42“ haben!"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index f7a8f7996..13e911ed0 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -10513,7 +10513,7 @@ msgstr "Η IP διεύθυνση πρέπει να είναι σε μορφή 1.
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, fuzzy, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "Η IP διεύθυνση της πύλης πρέπει να είναι της μορφής 1.2.3.4"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index f6607b670..e87bb1921 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -9709,7 +9709,7 @@ msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, fuzzy, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "IP-adreso devus esti en la notacio 1.2.3.4"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index d3cf8acb4..79a8ad55d 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -10978,7 +10978,7 @@ msgstr "Las direcciones IP deben estar en el formato 1.2.3.4"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr ""
"La dirección de la máscara de red debería estar en formato 255.255.224.0"
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index 84e54fc76..bc2161000 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -10806,7 +10806,7 @@ msgstr "IP-aadress peab olema kujul 1.2.3.4"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "Võrgumaski aadress peab olema kujul 255.255.224.0"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index 1faaf6e0b..cf12c3b2d 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -10882,7 +10882,7 @@ msgstr "IP helbideak 1.2.3.4 formatua izan behar du"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, fuzzy, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "Atebidearen helbideak 1.2.3.4 formatua izan behar du"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/fa.po b/perl-install/share/po/fa.po
index 095f74607..1e374bcb7 100644
--- a/perl-install/share/po/fa.po
+++ b/perl-install/share/po/fa.po
@@ -10781,7 +10781,7 @@ msgstr "نشانی آی‌پی باید در قالب ۱.۲.۳.۴باشد"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, fuzzy, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "نشانی دروازه باید در قالب ۱.۲.۳.۴باشد"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index 5bd1cb338..fa844f214 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -10944,7 +10944,7 @@ msgstr "IP-osoitteen tulee olla muotoa 1.2.3.4"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, fuzzy, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "Yhdyskäytävän osoite pitää olla muotoa 1.2.3.4"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
index fde2c6a13..d9320157b 100644
--- a/perl-install/share/po/fr.po
+++ b/perl-install/share/po/fr.po
@@ -11022,7 +11022,7 @@ msgstr "L'adresse IP doit ressembler à quelque chose comme « 192.168.1.20 »
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr ""
"L'adresse réseau doit ressembler à quelque chose comme « 255.255.224.0 »"
diff --git a/perl-install/share/po/fur.po b/perl-install/share/po/fur.po
index f322a8280..d71d79be1 100644
--- a/perl-install/share/po/fur.po
+++ b/perl-install/share/po/fur.po
@@ -9351,7 +9351,7 @@ msgstr ""
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr ""
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index 8bf9097c9..3b6d381e3 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -9392,7 +9392,7 @@ msgstr ""
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr ""
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index 719210f10..655f562f5 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -9834,7 +9834,7 @@ msgstr "Os enderezos IP deben estar no formato 1.2.3.4"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, fuzzy, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "O enderezo da pasarela debe estar no formato 1.2.3.4"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/he.po b/perl-install/share/po/he.po
index 35831eecd..f83f374fd 100644
--- a/perl-install/share/po/he.po
+++ b/perl-install/share/po/he.po
@@ -10143,7 +10143,7 @@ msgstr "כתובת IP צריכה להראות ככה 1.2.3.4"
#: network/netconnect.pm:1057 standalone/drakconnect:686
#, c-format
-msgid "Netmask address should be in format 255.255.224.0"
+msgid "Netmask should be in format 255.255.224.0"
msgstr "התחביר להגדרת Netmask הוא 255.255.224.0"
#: network/netconnect.pm:1041
diff --git a/perl-install/share/po/hi.po b/perl-install/share/po/hi.po
index 9fc118b32..289da92b4 100644
--- a/perl-install/share/po/hi.po
+++ b/perl-install/share/po/hi.po