本文整理汇总了Python中freenasUI.common.freenasldap.FreeNAS_LDAP.has_samba_schema方法的典型用法代码示例。如果您正苦于以下问题:Python FreeNAS_LDAP.has_samba_schema方法的具体用法?Python FreeNAS_LDAP.has_samba_schema怎么用?Python FreeNAS_LDAP.has_samba_schema使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类freenasUI.common.freenasldap.FreeNAS_LDAP
的用法示例。
在下文中一共展示了FreeNAS_LDAP.has_samba_schema方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: check_for_samba_schema
# 需要导入模块: from freenasUI.common.freenasldap import FreeNAS_LDAP [as 别名]
# 或者: from freenasUI.common.freenasldap.FreeNAS_LDAP import has_samba_schema [as 别名]
def check_for_samba_schema(self):
self.clean_bindpw()
cdata = self.cleaned_data
binddn = cdata.get("ldap_binddn")
bindpw = cdata.get("ldap_bindpw")
basedn = cdata.get("ldap_basedn")
hostname = cdata.get("ldap_hostname")
certfile = None
ssl = cdata.get("ldap_ssl")
if ssl in ('start_tls', 'on'):
certificate = cdata["ldap_certificate"]
certfile = get_certificateauthority_path(certificate)
fl = FreeNAS_LDAP(
host=hostname,
binddn=binddn,
bindpw=bindpw,
basedn=basedn,
certfile=certfile,
ssl=ssl)
if fl.has_samba_schema():
self.instance.ldap_has_samba_schema = True
else:
self.instance.ldap_has_samba_schema = False