diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-06-20 23:19:30 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-06-20 23:19:30 +0000 |
commit | 11177ffc6a859cac7e0b64f523740f282e6be212 (patch) | |
tree | ec906593c69e5a0885895c86425c76f08fb93313 /perl-install | |
parent | e64719bb69facfc630f112f313575ca6cf352303 (diff) | |
download | drakx-11177ffc6a859cac7e0b64f523740f282e6be212.tar drakx-11177ffc6a859cac7e0b64f523740f282e6be212.tar.gz drakx-11177ffc6a859cac7e0b64f523740f282e6be212.tar.bz2 drakx-11177ffc6a859cac7e0b64f523740f282e6be212.tar.xz drakx-11177ffc6a859cac7e0b64f523740f282e6be212.zip |
simplify globetrotter case: skip non interactive stuff
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/service_harddrake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake index c40ba9350..cbca4beb7 100755 --- a/perl-install/standalone/service_harddrake +++ b/perl-install/standalone/service_harddrake @@ -115,7 +115,7 @@ foreach my $hw_class (@harddrake::data::tree) { undef @configurator_pool; } - next if $is_globetrotter && $configurator_pool[0] !~ /drakupdate_fstab/; + next if $is_globetrotter && !$hw_class->{automatic}; next unless -x first(split /\s+/, $configurator_pool[0]); my ($pid, $no, $res); if (!$hw_class->{automatic}) { |