diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-11-21 12:56:48 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-11-21 12:56:48 +0000 |
commit | b8a069fc247e34fff755ae64bd33423fcee62fa1 (patch) | |
tree | 157e70228f674278bc85f05c76fe182359c4a237 /perl-install/harddrake/sound.pm | |
parent | d3ad34d44d95c630499a0c2fff717b204e18361d (diff) | |
download | drakx-b8a069fc247e34fff755ae64bd33423fcee62fa1.tar drakx-b8a069fc247e34fff755ae64bd33423fcee62fa1.tar.gz drakx-b8a069fc247e34fff755ae64bd33423fcee62fa1.tar.bz2 drakx-b8a069fc247e34fff755ae64bd33423fcee62fa1.tar.xz drakx-b8a069fc247e34fff755ae64bd33423fcee62fa1.zip |
install aoss too when installing ALSA
Diffstat (limited to 'perl-install/harddrake/sound.pm')
-rw-r--r-- | perl-install/harddrake/sound.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/harddrake/sound.pm b/perl-install/harddrake/sound.pm index 5d1b2a81b..ff5a74362 100644 --- a/perl-install/harddrake/sound.pm +++ b/perl-install/harddrake/sound.pm @@ -200,7 +200,7 @@ sub do_switch { $modules_conf->set_sound_slot("sound-slot-$index", $new_driver); $modules_conf->write; if ($new_driver =~ /^snd-/) { # new driver is an alsa one - $in->do_pkgs->ensure_binary_is_installed('alsa-utils', 'alsactl'); + $in->do_pkgs->ensure_binary_is_installed(qw(alsactl alsa-utils aoss)); rooted("service alsa start") if $::isStandalone && !$blacklisted; rooted("/sbin/chkconfig --add alsa") if $::isStandalone; load($modules_conf, $new_driver) if $::isStandalone; # service alsa is buggy |