{%
    if State == 'New' then
        echo('NOTE: The exported RAID Controller configurations are valid only if they are exported after the POST is complete.\r\nCollecting configuration...')
    end

    if State == 'Killed' or State == 'Cancelled' then
        echo('Export configuration failed.')
    end

    if State == 'Exception' then
        echo(Message.Message or 'Exception happened during configuration export.')
    end

    if State == 'Completed' then
        echo('Export configuration successfully.')
    end
%}