Problem with auto/config

2014-04-12 Thread Luis Muñoz Fuente
Hello: I have the auto/config: #!/bin/sh set -e lb config noauto - i386 -k 486 --memtest none "${@}" and the command lb config fail and say: --memtest: not found Which is the error? Thanks I'm spanish, sorry about my very poor english. -- To UNSUBSCRIBE, email to debian-

Re: Problem with auto/config

2014-04-12 Thread Matthew Bentley
Looks like an error in your script. You are missing the '\' to indicate continuation of the command to a new line. This ought to work: #!/bin/sh set -e lb config noauto \ -a i386 \ -k 486 \ --memtest none \ "${@}" See the difference? -- Matt Bentley On April 12, 2014 at 9:30:19 AM, Luis M

Re: Problem with auto/config

2014-04-12 Thread Luis Muñoz Fuente
Matthew Bentley dijo: > Looks like an error in your script. You are missing the '\' to indicate > continuation of the command to a new line. This ought to work: Ok, silly fail. thanks -- To UNSUBSCRIBE, email to debian-live-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Co

Re: Problem with auto/config

2014-04-12 Thread Luis Muñoz Fuente
Matthew Bentley dijo: > Looks like an error in your script. You are missing the '\' to indicate > continuation of the command to a new line. This ought to work: > but anything options fail me, for example: --firmware-chroot false \ Why? -- To UNSUBSCRIBE, email to debian-live-requ...@lis

Re: Problem with auto/config

2014-04-12 Thread Matthew Bentley
Can you show the entire contents of the script and whatever error you are getting? Nearly impossible to tell what might be happening without additional information. -- Matt Bentley On April 12, 2014 at 3:11:13 PM, Luis Muñoz Fuente (luis.munoz@juntadeandalucia.es