{%
    if State == 'New' then
        echo('Setting configuration...')
    end

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

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

    if State == 'Completed' then
        echo('Import configuration successfully.\r\nReset OS for the BIOS config to take effect.')
    end
%}