Package: ltsp
Version: 0.99debian5
Severity: wishlist
Tag: patch
The udeb ltsp-client-builder supports preseeding ltsp-build-client with
arguments. Problem is that using space in the argument like this :
--late-packages package1 package2 package3
don't work very well from the debian installer.
i wish for support of comma separated values in the --late-packages
argument.
the patch included should fix the issue.
Ronny Aasen
=== modified file 'server/plugins/ltsp-build-client/Debian/030-late-packages'
--- server/plugins/ltsp-build-client/Debian/030-late-packages 2006-09-06 19:51:10 +0000
+++ server/plugins/ltsp-build-client/Debian/030-late-packages 2006-10-14 14:42:50 +0000
@@ -4,7 +4,7 @@
;;
configure)
if [ -n "$option_late_packages_value" ]; then
- LATE_PACKAGES="$option_late_packages_value"
+ LATE_PACKAGES="$(echo $option_late_packages_value | tr ',' ' ')"
fi
;;
finalization)