summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/harddrake/sound.pm16
2 files changed, 18 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 7ec2e0ce2..c45fe1ac1 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -2,6 +2,8 @@
o don't rewrite label when it did not change (#47186)
- drakdvb: introduce new DVB channels scanning tool
(from Pascal Terjan)
+- draksound:
+ o disable auto spawning when diasbling PA (#47258)
Version 11.80 - 21 January 2008
diff --git a/perl-install/harddrake/sound.pm b/perl-install/harddrake/sound.pm
index f40ef1e03..00a778db0 100644
--- a/perl-install/harddrake/sound.pm
+++ b/perl-install/harddrake/sound.pm
@@ -241,6 +241,21 @@ sub set_pulseaudio_routing {
}
+my $pa_client_conffile = '/etc/pulse/client.conf';
+
+sub set_PA_autospan {
+ my ($val) = @_;
+ $val = 'autospawn = ' . bool2yesno($val) . "\n";
+ my $done;
+ substInFile {
+ if (/^autospawn\s*=/) {
+ $_ = $val;
+ $done = 1;
+ }
+ } $pa_client_conffile;
+ append_to_file($pa_client_conffile, $val) if !$done;
+}
+
my $pulse_config_file = "$::prefix/etc/pulse/daemon.conf";
@@ -328,6 +343,7 @@ sub switch {
my $write_config = sub {
set_pulseaudio($is_pulseaudio_enabled);
set_pulseaudio_routing($is_pulseaudio_enabled && $is_pulseaudio_routing_enabled);
+ set_PA_autospan($is_pulseaudio_enabled);
set_5_1_in_pulseaudio($is_5_1_in_pulseaudio_enabled);
set_user_switching($is_user_switching);
if ($is_pulseaudio_routing_enabled) {