{%
    local str = option == 0 and 'normal power off' or (option == 1 and 'power on' or 'forced power off')
    for _, obj in pairs(IdList) do
        if HostType == "Multihost" then
            echo(string.format('[System%s] Control fru0 %s successfully.\n', obj.sysid, str))
        else
            echo(string.format('Control fru0 %s successfully.\n', str))
        end
    end
    echo('\b')
%}