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 16:42:25 -0400
commitb9966dbacaaffebc1ab6c2f06f01904a56524564 (patch)
tree511d7379fccb2418ac6a9fd0cae60eb6cf56829d /Makefile
parent7341766f514434f8f717b20f2c68af9623daf27c (diff)
downloadipsilon.git-ipatool.tar.gz
ipsilon.git-ipatool.tar.xz
ipsilon.git-ipatool.zip
Use the IPA API directly when adding the HTTP principalipatool
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>
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: