updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / pulseaudio-null / pulseaudio.install
blobfd7db3b361b6e223e3ac57409eb97bab33399f3d
1 post_install() {
2   cat << MES
3 >>> See the wiki at http://wiki.archlinux.org/index.php/PulseAudio for details
4     on configuring your system for PulseAudio.
6 >>> Make sure to install pulseaudio-alsa to configure ALSA for PulseAudio.
7 MES
10 post_upgrade() {
11   # Delete old users and groups
12   # System-wide daemon not supported anymore
13   if (( $(vercmp $2 0.9.22) < 0 )); then
14     getent passwd pulse &>/dev/null && usr/sbin/userdel -f pulse
15     getent group pulse-access &>/dev/null && usr/sbin/groupdel pulse-access
16     getent group pulse-rt &>/dev/null && usr/sbin/groupdel pulse-rt
17     getent group pulse &>/dev/null && usr/sbin/groupdel pulse
18   fi
20   true
23 # vim:set ts=2 sw=2 et: