summarylogtreecommitdiffstats
path: root/PKGBUILD-pulseaudio.install
blob: b852fae14eeb4ba413d7422e3230c6ccb0b4e05f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
## arg 1:  the new package version
post_install() {
  sed -i '/^autospawn/d' /etc/pulse/client.conf
  echo autospawn=no >> /etc/pulse/client.conf

  ldconfig
}

post_upgrade() {
  post_install
}

post_remove() {
  ldconfig
}