From: Vagrant Cascadian Date: Thu, 8 Dec 2016 05:31:04 +0000 (+0200) Subject: Debian: Fix setting of FAT_CLIENT_DESKTOPS from configuration file. Thanks to Finn... X-Git-Tag: archive/raspbian/5.18.12-1+rpi1^2~1^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b444c4584fe761a709e5dfd63964ef205aa2b064;p=ltsp.git Debian: Fix setting of FAT_CLIENT_DESKTOPS from configuration file. Thanks to Finn Andersen for reporting the issue. https://sourceforge.net/p/ltsp/mailman/message/35538148/ Gbp-Pq: Topic upstream Gbp-Pq: Name 0001-Debian-Fix-setting-of-FAT_CLIENT_DESKTOPS-from-confi.patch --- diff --git a/server/share/ltsp/plugins/ltsp-build-client/Debian/030-fat-client b/server/share/ltsp/plugins/ltsp-build-client/Debian/030-fat-client index aa1699a..26dc2e1 100644 --- a/server/share/ltsp/plugins/ltsp-build-client/Debian/030-fat-client +++ b/server/share/ltsp/plugins/ltsp-build-client/Debian/030-fat-client @@ -12,6 +12,8 @@ case "$MODE" in if [ -n "$option_fat_client_desktop_value" ]; then FAT_CLIENT_DESKTOPS="$(echo $option_fat_client_desktop_value | tr ',' ' ')" + fi + if [ -n "$FAT_CLIENT_DESKTOPS" ]; then EARLY_PACKAGES="$EARLY_PACKAGES $FAT_CLIENT_DESKTOPS" fi ;;