Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

Commit

Permalink
minor typo in setup script
Browse files Browse the repository at this point in the history
  • Loading branch information
jborean93 committed Jun 10, 2017
1 parent 0e35df9 commit ca25522
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ cat > /etc/apache2/sites-available/example.com.conf << EOL
<Directory "/var/www/example.com/public_html">
AuthType GSSAPI
AuthName "GSSAPI Single Sign On Login"
Require user $KEBEROS_USERNAME@${KERBEROS_REALM^^}
Require user $KERBEROS_USERNAME@${KERBEROS_REALM^^}
GssapiCredStore keytab:/etc/krb5.keytab
</Directory>
</VirtualHost>
Expand Down
3 changes: 2 additions & 1 deletion tests/test_kerberos.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

host_fqdn = "%s.%s" % (host, realm.lower())


def test_service_principal():
kerberos.getServerPrincipalDetails("HTTP", host_fqdn)

Expand All @@ -26,6 +27,7 @@ def test_basic_check_password():
service = "HTTP/%s" % host_fqdn
kerberos.checkPassword(username, password, service, realm)


def test_gssapi():
"""
Return Code Values
Expand Down Expand Up @@ -77,7 +79,6 @@ def connect(self):
ssl_version=ssl.PROTOCOL_SSLv3
)


def sendRequest(host, port, use_ssl, method, uri, headers):
response = None
if use_ssl:
Expand Down

0 comments on commit ca25522

Please sign in to comment.