{%
    if IsLocalFile then
        if not IsImportActionPermitted then
            echo('File path is invalid.\r\n')
            echo('Usage: ipmcset -d crl -v <localpath/URL> <type>\r\n')
            echo('Localpath  e.g.: /tmp/cms.crl\r\n')
            echo('URL            : protocol://[username:password@]IP[:port]/directory/filename\r\n')
            echo('    The parameters in the URL are described as follows:\r\n')
            echo('        The protocol must be https,sftp,cifs,scp or nfs.\r\n')
            echo('        The URL can contain only letters, digits, and special characters. The directory or file name cannot contain @.\r\n')
            echo('        Use double quotation marks (\") to enclose the URL that contains a space or double quotation marks (\").')
            echo(' Escape the double quotation marks (\") and back slash (\\) contained in the URL.\r\n')
            echo('        For example, if you want to enter:\r\n')
            echo('        a b\\cd\"\r\n')
            echo('        Enter:\r\n')
            echo('        \"a b\\\\cd\\\"\"\r\n')
            echo('Types are:\r\n')
            echo('    1        CRL file for upgrade package integrity checking.')
        else
            if Result == 0 then
                echo('Import CRL file failed.')
            end
            if Result == 1 then
                echo('Import CRL file successfully.')
            end
        end
    else
        if not State then
            echo('Import CRL file failed.')
        end
        if State == 'New' then
            echo('Downloading...')
        end
        if State == 'Exception' or State == 'Killed' or State == 'Cancelled' then
            echo('Import CRL file failed.')
        end
        if State == 'Completed' then
            echo('Import CRL file successfully.')
        end
    end
%}