> but because of the loop: 
>   while [ -n "$1" ] ; do 
>     .. 
>     test -n "$1" && shift 
>   done 
> 
> the --late-packages was ignored because of
>   --security-mirror ""
> 
> I modified the loop to use
>   while [ $# -gt 0 ] ; do 
>     .. 
>     shift 
>   done 

this does break if using a fussy shell like "posh" as /bin/sh

i'm thinking something like this would work, though:

while [ $# -gt 0 ] ; do
  ..
  test $# -gt 0 && shift
done

thanks for pointing this out.

patch in baz repository:
http://llama.freegeek.org/~vagrant/baz-archive/[EMAIL PROTECTED]

[EMAIL PROTECTED]/ltsp--debianfixes--0--patch-42

live well,
  vagrant

Attachment: signature.asc
Description: Digital signature

Reply via email to