{%
    if destination ~= 1 and destination ~= 2 and destination ~= 3 and destination ~= 4 then
        if enabled_syslog then
            echo('syslog state : enabled')
        else
            echo('syslog state : disabled')
        end
    else
        if enabled_server then
            local line = string.format('syslog dest%s state : enabled', destination)
            echo(line)
        else
            local line = string.format('syslog dest%s state : disabled', destination)
            echo(line)
        end
    end
%}