summaryrefslogtreecommitdiffstats
path: root/perl-install/harddrake
diff options
context:
space:
mode:
authorOlivier Blin <blino@mageia.org>2013-05-07 00:06:35 +0000
committerOlivier Blin <blino@mageia.org>2013-05-07 00:06:35 +0000
commit143d3ab2c504dfaba60b92ce5e86fc9fd5a432a6 (patch)
tree181374b7924cf317a75f81307fe5f2e039818638 /perl-install/harddrake
parent7536655d2d15238c26ff5e084dfe4d08e34b9ef7 (diff)
downloaddrakx-143d3ab2c504dfaba60b92ce5e86fc9fd5a432a6.tar
drakx-143d3ab2c504dfaba60b92ce5e86fc9fd5a432a6.tar.gz
drakx-143d3ab2c504dfaba60b92ce5e86fc9fd5a432a6.tar.bz2
drakx-143d3ab2c504dfaba60b92ce5e86fc9fd5a432a6.tar.xz
drakx-143d3ab2c504dfaba60b92ce5e86fc9fd5a432a6.zip
harddrake: do not disable bluetooth service if adapter disappears (for
example if disabled by Fn keys), systemd will automatically disable the service if needed
Diffstat (limited to 'perl-install/harddrake')
-rw-r--r--perl-install/harddrake/autoconf.pm5
1 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/harddrake/autoconf.pm b/perl-install/harddrake/autoconf.pm
index 002d562bb..0fd4c9957 100644
--- a/perl-install/harddrake/autoconf.pm
+++ b/perl-install/harddrake/autoconf.pm
@@ -46,6 +46,11 @@ sub pcmcia {
sub bluetooth {
my ($enable) = @_;
+ # do not disable bluetooth service if adapter disappears
+ # (for example if disabled by Fn keys)
+ # systemd will automatically disable the service if needed
+ return if !$enable;
+
#- FIXME: make sure these packages are installed when needed
# if ($enable) {
# require do_pkgs;