diff options
Diffstat (limited to '.install')
-rw-r--r-- | .install | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.install b/.install new file mode 100644 index 000000000000..175075c66bd3 --- /dev/null +++ b/.install @@ -0,0 +1,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 +} |