blob: 175075c66bd35cf24cac6f48475dcfa0a4a8faa3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
home=/var/lib/pulseaudio-central
post_install() {
if test ! -e "$home"
then
mkdir -m 700 "$home"
install -D -m 644 -t "$home/.config/pulse" /usr/share/pulseaudio-central/default.pa
chown -R pulse:pulse "$home"
fi
}
|