Skip to content

Commit

Permalink
TritonDataCenter/pkgsrc#282: handle signature failures.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Perkin committed Jul 30, 2015
1 parent 2e16302 commit 5f6954b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions actions.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,9 @@ analyse_pkglog(long int filepos)
/* Can't install dependency */
if (strstr(err_line, "an\'t install") != NULL)
err_count++;
/* unable to verify signature */
if (strstr(err_line, "unable to verify signature") != NULL)
err_count++;
}

fclose(err_ro);
Expand Down

0 comments on commit 5f6954b

Please sign in to comment.