Uploaded image for project: 'Dev - Nexus Repo'
  1. Dev - Nexus Repo
  2. NEXUS-21834

When running under IIS, error message "Clearsigned file isn't valid, got 'NOSPLIT' (does the network require authentication?)" appears

Details

    • Bug
    • Resolution: Unresolved
    • Major
    • None
    • 3.19.1, 3.25.0
    • APT
    • Windows Server 2012 R2 64-bit, IIS 8.5

    Description

      I've setup Nexus on an IIS and I created some APT repositories.

      I've successfully uploaded a couple of packages in it, but when I try doing apt-get update from a client (especially an older one), I get the following error:

      Clearsigned file isn't valid, got 'NOSPLIT' (does the network require authentication?)

      After some research, it seems that the problem is that IIS (being on Windows) sends the InRelease file with CRLF instead of LF. If I manually (I'm using Fiddler as a proxy-in-the-middle) remove the CR characters from the output, apt-get update works perfectly (I've managed to install a couple of packages).

      I have made a patch and pull request for the fix from when nexus-repository-apt was a separate plugin. It was a simple fix, really, just replace \r with the empty string. The original pull request probably doesn't work as-is anymore, because the file has changed since then, but the principle remains the same: Add these three lines before signing the release files:

      releaseFile = releaseFile.replace("\r", "");

      inRelease = new String(inRelease, Charsets.UTF_8).replace("\r", "").getBytes();

      releaseGpg = new String(releaseGpg, Charsets.UTF_8).replace("\r", "").getBytes();

      A pull request might follow, if applicable.

      Attachments

        Activity

          People

            Unassigned Unassigned
            gschizas George Schizas
            Matthew Piggott Matthew Piggott
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

            Dates

              Created:
              Updated:

              tigCommentSecurity.panel-title