Re: Problem with auto/config

2014-04-20 Thread Luis Muñoz Fuente
Hello: The problem was only the empty lines, that they needs too the \ Thanks -- To UNSUBSCRIBE, email to debian-live-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/20140414145354.6956c7be.luis.muno

Re: Problem with auto/config

2014-04-13 Thread Daniel Baumann
On 04/13/2014 09:57 AM, Luis Muñoz Fuente wrote: > lb config noauto \ > - i386 \ [...] please be more attentative, you keep doing the same typo again that you've been notified of before already. -- Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern Email: daniel.bau

Re: Problem with auto/config

2014-04-13 Thread Luis Muñoz Fuente
Matthew Bentley dijo: > 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. The auto/config: #!/bin/sh set -e lb config noauto \ - i386 \ -k 486 \ --m

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

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 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 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