Code review comment for lp:~andreserl/maas/trunk-fpi

Revision history for this message
Gavin Panella (allenap) wrote :

On 9 May 2013 10:04, Andres Rodriguez <email address hidden> wrote:
> Hi Julian,
>
> I have addressed all of your comments but the SAY one. SO something like?
>
> LABEL execute
> SAY Booting under MAAS direction...
> SAY {{kernel_params() | kernel_command}}

These SAY commands are processed as the file is parsed, not when the
particular label is chosen. You can't use SAY to show which label was
actually chosen.

For example:

  SAY hello
  LABEL foo
    SAY foo
  LABEL bar
    SAY bar

will echo:

  hello
  foo
  bar

regardless.

« Back to merge proposal