diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-08-23 15:47:17 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-08-23 15:47:17 +0000 |
commit | bd046906c20f915982e46b06f0c5d4f2901cf538 (patch) | |
tree | f4e052f02b6490c9df5398e48bc1d17629c86549 /perl-install | |
parent | bcdfc7c0bbbcfbfb6afbe997ad8679daf9f81a01 (diff) | |
download | drakx-bd046906c20f915982e46b06f0c5d4f2901cf538.tar drakx-bd046906c20f915982e46b06f0c5d4f2901cf538.tar.gz drakx-bd046906c20f915982e46b06f0c5d4f2901cf538.tar.bz2 drakx-bd046906c20f915982e46b06f0c5d4f2901cf538.tar.xz drakx-bd046906c20f915982e46b06f0c5d4f2901cf538.zip |
don't write /etc/udev/conf.d/mouse.conf, udev now handles it using /etc/sysconfig/mouse
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 5f0512d11..f761cbc38 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -919,7 +919,7 @@ UNREGISTER ^$devfs_if\$ CFUNCTION GLOBAL unlink $if #- 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/; + if $of !~ /dvd|mouse/; #- when creating a symlink on the system, use devfs name if devfs is mounted symlinkf($devfs_if, "$::prefix/dev/$if") if $devfs_if ne $if && detect_devices::dev_is_devfs(); |