Debian: Remove ltsp-build-client plugin pulseaudio-tweaks, as the customizations...
authorVagrant Cascadian <vagrant@debian.org>
Thu, 23 Oct 2014 22:36:50 +0000 (15:36 -0700)
committerVagrant Cascadian <vagrant@debian.org>
Tue, 31 Mar 2015 23:54:20 +0000 (00:54 +0100)
Gbp-Pq: Topic upstream
Gbp-Pq: Name 0004-Debian-Remove-ltsp-build-client-plugin-pulseaudio-tw.patch

server/share/ltsp/plugins/ltsp-build-client/Debian/010-pulseaudio-tweaks [deleted file]

diff --git a/server/share/ltsp/plugins/ltsp-build-client/Debian/010-pulseaudio-tweaks b/server/share/ltsp/plugins/ltsp-build-client/Debian/010-pulseaudio-tweaks
deleted file mode 100644 (file)
index 65e7dca..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-# a number of hacks needed to resolve:  http://bugs.debian.org/537526
-case "$MODE" in
-    finalization)
-        # some versions of pulseaudio need /var/lib/pulse to be present, but
-        # create it dynamically. create the directory so we can bind-mount it.
-        mkdir $ROOT/var/lib/pulse
-
-        # workaround to get pulseaudio to start on thin-clients with only 64MB
-        # of ram.
-        if [ -f "$ROOT/etc/pulse/daemon.conf" ] && [ "$DIST" != "lenny" ]; then
-            echo 'shm-size-bytes = 65535' >> "$ROOT/etc/pulse/daemon.conf"
-        fi
-
-        # move aside the system.pa, which tries to load hal-based modules, and
-        # dies badly.  it works fine without it.
-        if [ -f "$ROOT/etc/pulse/system.pa" ]; then
-            mv "$ROOT/etc/pulse/system.pa" "$ROOT/etc/pulse/system.pa.ltsp" || true
-        fi
-        ;;
-esac