diff options
-rwxr-xr-x[-rw-r--r--] | config/chroot_local-hooks/patch-kdm-to-kill-plymouth.sh (renamed from config/chroot_local-patches/kdm_plymouth_hack.patch) | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/config/chroot_local-patches/kdm_plymouth_hack.patch b/config/chroot_local-hooks/patch-kdm-to-kill-plymouth.sh index 6539f3c..ce56832 100644..100755 --- a/config/chroot_local-patches/kdm_plymouth_hack.patch +++ b/config/chroot_local-hooks/patch-kdm-to-kill-plymouth.sh @@ -1,4 +1,7 @@ ---- /build/kanotix/chroot/etc/init.d/kdm 2011-02-12 20:16:11.000000000 +0100 +#!/bin/sh +if [ -f /etc/init.d/kdm ]; then + patch --no-backup-if-mismatch -p0 <<'EOT' +--- /etc/init.d/kdm 2011-02-12 20:16:11.000000000 +0100 +++ /etc/init.d/kdm 2011-09-28 04:05:22.977140278 +0200 @@ -126,6 +126,10 @@ [ "$(cat $DEFAULT_DISPLAY_MANAGER_FILE)" != "$DAEMON" ]; then @@ -11,3 +14,7 @@ log_daemon_msg "Starting K Display Manager" "kdm" if start-stop-daemon --start --quiet $SSD_ARGS -- $ARG ; then log_end_msg 0 +EOT +else + exit 0 +fi |