diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-05-30 11:04:07 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-05-30 11:04:07 +0000 |
commit | 8ab356a377fcfbfa2ef9935c70d71df5dd1376f1 (patch) | |
tree | ac731e43c9551cf5f27bd6b54e8b0ab1e5048e7d | |
parent | 51f1add6904d870ba7aa3ac0cda63bbcd2cc50fb (diff) | |
download | drakx-8ab356a377fcfbfa2ef9935c70d71df5dd1376f1.tar drakx-8ab356a377fcfbfa2ef9935c70d71df5dd1376f1.tar.gz drakx-8ab356a377fcfbfa2ef9935c70d71df5dd1376f1.tar.bz2 drakx-8ab356a377fcfbfa2ef9935c70d71df5dd1376f1.tar.xz drakx-8ab356a377fcfbfa2ef9935c70d71df5dd1376f1.zip |
service_harddrake: fix kbluetooth config path
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/harddrake/autoconf.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 933fddcdd..bb395b872 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -2,6 +2,7 @@ (also fixes detection of Windows partitions during live installation) - service_harddrake: o do not allow fbdev if /proc/fb is empty + o fix kbluetooth config path Version 10.33 - 29 May 2008 diff --git a/perl-install/harddrake/autoconf.pm b/perl-install/harddrake/autoconf.pm index 98be5d878..9b16f5d3c 100644 --- a/perl-install/harddrake/autoconf.pm +++ b/perl-install/harddrake/autoconf.pm @@ -52,7 +52,7 @@ sub bluetooth { # } require services; services::set_status("bluetooth", $enable); - my $kbluetoothd_cfg = '/etc/kde/kbluetoothdrc'; + my $kbluetoothd_cfg = '/etc/kde/kbluetoothrc'; update_gnomekderc($kbluetoothd_cfg, 'General', 'AutoStart' => bool2text($enable)) if -f $kbluetoothd_cfg; |