core/pulseaudio/pulseaudio.install

25 lines
786 B
Plaintext
Raw Normal View History

2010-08-12 01:18:31 +08:00
post_install() {
2010-11-28 16:31:40 +08:00
cat << MES
>>> See the wiki at http://chakra-project.org/wiki/index.php/PulseAudio for details
2010-08-12 01:18:31 +08:00
on configuring your system for PulseAudio.
>>> Make sure to install pulseaudio-alsa to configure ALSA for PulseAudio.
>>> You might want to blacklist the "snd-pcm-oss" module in /etc/rc.conf to
keep ALSA's OSS emulation from interfering with ALSA or PulseAudio.
MES
}
post_upgrade() {
2010-11-28 16:31:40 +08:00
# Delete old users and groups
# System-wide daemon not supported anymore
2010-08-12 01:18:31 +08:00
getent passwd pulse &>/dev/null && usr/sbin/userdel -f pulse
getent group pulse-access &>/dev/null && usr/sbin/groupdel pulse-access
getent group pulse-rt &>/dev/null && usr/sbin/groupdel pulse-rt
getent group pulse &>/dev/null && usr/sbin/groupdel pulse
true
}
# vim:set ts=2 sw=2 et: