summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2015-03-13 14:56:26 -0400
committerRob Crittenden <rcritten@redhat.com>2015-03-16 17:13:23 -0400
commit8236943374c978a8f9dc6142daac58ee0201f991 (patch)
tree0a2957107f5240935b40a3f842b19215b800be02 /Makefile
parentbae1c5592da11f1fb2b9930730cf6acae942f3dc (diff)
downloadipsilon-8236943374c978a8f9dc6142daac58ee0201f991.tar.gz
ipsilon-8236943374c978a8f9dc6142daac58ee0201f991.tar.xz
ipsilon-8236943374c978a8f9dc6142daac58ee0201f991.zip
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 <rcritten@redhat.com> Reviewed-by: Nathan Kinder <nkinder@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
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: