This guide explains how to set up Kerberos authentication for:
- SSH access to a server,
- HTTP access to a service.
It assumes you're running Active Directory and Debian servers.
| """ | |
| Came up with this for satchmo's downloadable product migration, 0001_split. | |
| """ | |
| def db_table_exists(table, cursor=None): | |
| try: | |
| if not cursor: | |
| from django.db import connection | |
| cursor = connection.cursor() | |
| if not cursor: | |
| raise Exception |