{%
    if Enabled == true then
        echo('Status             : enabled\n')
    else
        echo('Status             : disabled\n')
    end

    if NTPMode == 'Static' then
        echo('Mode               : manual\n')
    elseif NTPMode == 'IPv4' then
        echo('Mode               : dhcpv4\n')
    elseif NTPMode == 'IPv6' then
        echo('Mode               : dhcpv6\n')
    else
        echo('Mode               : unknown\n')
    end

    echo(string.format('Preferred Server   : %s\n', PreferServer))
    echo(string.format('Alternative Server : %s\n', AlternateServer))
    echo(string.format('Extra Server       : %s\n', ExtraServers[1]))
    if NTPServerCount == 6 then
        echo(string.format('                   : %s\n', ExtraServers[2]))
        echo(string.format('                   : %s\n', ExtraServers[3]))
        echo(string.format('                   : %s\n', ExtraServers[4]))
    end

    if Enabled == true and SyncResult == 0 then
        echo('Synchronize        : successful\n')
    else
        echo('Synchronize        : failed\n')
    end

    if AuthEnabled then
        echo('Auth Enable        : enabled\n')
    else
        echo('Auth Enable        : disabled\n')
    end
    if GroupKeyStatus == 0 then
        echo('Group Key          : not imported')
    else
        echo('Group Key          : imported')
    end
%}