<div dir="ltr">Hi,<br><br>I want to be able to include a file which will normally have a constant but in some cases it may not have any content, but I still  want to be able to restart/reload without problems. <br><div><br>Here is a snippet: <br>include "/etc/bird.d/anycast_prefixes.conf";<br><br>function anycast_advertise()<br>{<br>    if defined(ACAST_PS_ADVERTISE) then<br>        return net ~ ACAST_PS_ADVERTISE;<br>    else {<br>        return false;<br>    }<br>}<br><br><br>The content of /etc/bird.d/anycast_prefixes.conf is <br>define ACAST_PS_ADVERTISE =<br>  [<br>    <a href="http://192.168.200.1/32">192.168.200.1/32</a>,  # Frontend 1<br>    <a href="http://192.168.200.2/32">192.168.200.2/32</a>   # Frontend 2<br>  ];<br><br>The defined function complains about missing variables.<br><br></div><div>Is it possible to express what I want?<br><br></div><div>Thanks,<br>Pavlos<br></div></div>