On Fri, May 26, 2006 at 11:09:51AM +0530, Siju George wrote:

>    host1 = "192.168.1.1"
>    host2 = "192.168.1.2"
>    all_hosts = "{" $host1 $host2 "}"
> ----------------------------------------------------------------------------
> 
> is that an error ?

No, it's correct if you want to use $all_hosts in a rule like

  pass from $all_hosts to any

But it won't work as right-hand-side of another macro definition, like

  from_all_hosts = "from " $all_hosts " to any"
  pass $from_all_hosts

Daniel

Reply via email to