From 8236943374c978a8f9dc6142daac58ee0201f991 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Fri, 13 Mar 2015 14:56:26 -0400 Subject: Use the IPA API directly when adding the HTTP principal This is the only way to force in a custom version string so that the remote IPA server doesn't reject the request as being newer than the server. This also removes the need to iterate over all servers as the IPA connection API does this automatically. https://fedorahosted.org/ipsilon/ticket/47 Signed-off-by: Rob Crittenden Reviewed-by: Nathan Kinder --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4cc215c..f39b26f 100644 --- a/Makefile +++ b/Makefile @@ -8,9 +8,10 @@ lint: # don't show recommendations, info, comments, report # W0613 - unused argument # Ignore cherrypy class members as they are dynamically added + # Ignore IPA API class members as they are dynamically added pylint -d c,r,i,W0613 -r n -f colorized \ --notes= \ - --ignored-classes=cherrypy \ + --ignored-classes=cherrypy,API \ ./ipsilon pep8: -- cgit