mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 20:07:14 +08:00
25 lines
786 B
Plaintext
Executable File
25 lines
786 B
Plaintext
Executable File
post_install() {
|
|
cat << MES
|
|
>>> See the wiki at http://chakra-project.org/wiki/index.php/PulseAudio for details
|
|
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() {
|
|
# Delete old users and groups
|
|
# System-wide daemon not supported anymore
|
|
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:
|