summaryrefslogtreecommitdiffstats
path: root/perl-install/devices.pm
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.com>2007-04-30 12:54:44 +0000
committerOlivier Blin <oblin@mandriva.com>2007-04-30 12:54:44 +0000
commita91a164fb5e43b03e6533d638f14aed01535c8ba (patch)
treee3f0c3c25f48a691ec4e157a55b177cf79b8dec4 /perl-install/devices.pm
parentebf781611af8b3be1e02b11a263cbc1164cbc0fe (diff)
downloaddrakx-a91a164fb5e43b03e6533d638f14aed01535c8ba.tar
drakx-a91a164fb5e43b03e6533d638f14aed01535c8ba.tar.gz
drakx-a91a164fb5e43b03e6533d638f14aed01535c8ba.tar.bz2
drakx-a91a164fb5e43b03e6533d638f14aed01535c8ba.tar.xz
drakx-a91a164fb5e43b03e6533d638f14aed01535c8ba.zip
do not try to configure dvd devices during install since /dev is wiped out at reboot
Diffstat (limited to 'perl-install/devices.pm')
-rw-r--r--perl-install/devices.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/devices.pm b/perl-install/devices.pm
index be31387e3..61c5b18dd 100644
--- a/perl-install/devices.pm
+++ b/perl-install/devices.pm
@@ -210,7 +210,7 @@ sub symlink_now_and_register {
#- add a specific udev script, we can't do it with a udev rule,
#- eg, ttySL0 is a symlink
output_with_perm("$::prefix/etc/udev/conf.d/$of.conf", 0755, "ln -sf $if /dev/$of\n")
- if $of !~ /dvd|mouse/;
+ if $of !~ /mouse/;
symlinkf($if, "$::prefix/dev/$of");
}