summaryrefslogtreecommitdiffstats
path: root/perl-install/share/po/vi.po
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2004-06-14 15:07:24 +0000
committerOlivier Blin <oblin@mandriva.org>2004-06-14 15:07:24 +0000
commitcfb8a6a2d2d26631375b3b65fb5a19f8f310ed38 (patch)
treedb121c8006f6289ae7753534bc760dfc722ff74c /perl-install/share/po/vi.po
parent5e5fc918a9f78c9c838cd73cce58faef9197b947 (diff)
downloaddrakx-cfb8a6a2d2d26631375b3b65fb5a19f8f310ed38.tar
drakx-cfb8a6a2d2d26631375b3b65fb5a19f8f310ed38.tar.gz
drakx-cfb8a6a2d2d26631375b3b65fb5a19f8f310ed38.tar.bz2
drakx-cfb8a6a2d2d26631375b3b65fb5a19f8f310ed38.tar.xz
drakx-cfb8a6a2d2d26631375b3b65fb5a19f8f310ed38.zip
always fill proxy fields of interfaces
Diffstat (limited to 'perl-install/share/po/vi.po')
0 files changed, 0 insertions, 0 deletions
t'>5
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake
index deaea0b8d..c2705d042 100755
--- a/perl-install/standalone/service_harddrake
+++ b/perl-install/standalone/service_harddrake
@@ -186,7 +186,10 @@ foreach my $hw_class (@harddrake::data::tree) {
$modules_conf->remove_module(difference2(\@old_drivers, \@new_drivers));
# add agpgart and the like modules to modprobe.preload if needed:
$modules_conf->write;
- modules::load(difference2(\@new_drivers, \@old_drivers));
+ foreach (difference2(\@new_drivers, \@old_drivers)) {
+ eval { modules::load($_) };
+ warn "warning: $@" if $@;
+ }
next;
} elsif ($Ident eq "BLUETOOTH") {
harddrake::autoconf::bluetooth(scalar keys %ID);