diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-04-12 13:05:50 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-04-12 13:05:50 +0000 |
commit | 02852d8b7c6629b45c65c9daae4ca5ea8423a2c7 (patch) | |
tree | 93c80b0a886862409422ed0528838937eaf43f71 | |
parent | e87d7b90d025cecd68d2be9e6be23f5a44f3638b (diff) | |
download | drakx-02852d8b7c6629b45c65c9daae4ca5ea8423a2c7.tar drakx-02852d8b7c6629b45c65c9daae4ca5ea8423a2c7.tar.gz drakx-02852d8b7c6629b45c65c9daae4ca5ea8423a2c7.tar.bz2 drakx-02852d8b7c6629b45c65c9daae4ca5ea8423a2c7.tar.xz drakx-02852d8b7c6629b45c65c9daae4ca5ea8423a2c7.zip |
(configure_pcmcia): better handling for not running cardmgr many times
-rw-r--r-- | perl-install/modules.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index e53275f14..5c01121de 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -745,7 +745,9 @@ sub configure_pcmcia { my ($pcic) = @_; #- try to setup pcmcia if cardmgr is not running. -# -s "/var/run/stab" and return; + my $running if 0; + return if $running; + $running = 1; log::l("i try to configure pcmcia services"); |