Lines Matching refs:ai
111 OPT_GROUP = cfg.OptGroup(name='ai',
1440 if not CONF.ai.server or CONF.ai.server == "None":
1445 if not CONF.ai.username or CONF.ai.username == "None":
1450 if ((not CONF.ai.password or CONF.ai.password == "None") and
1451 (not CONF.ai.ssh_key_file or CONF.ai.ssh_key_file == "None") and
1452 (not CONF.ai.ssh_key_contents or
1453 CONF.ai.ssh_key_contents == "None")):
1569 timer.start(interval=int(CONF.ai.deploy_interval))
1709 # Recreate new ai client for this mac address
1723 # (Re)Create new ai Manifest for this mac address
2315 self._derived_manifest = CONF.ai.derived_manifest
2670 if not CONF.ai.server or CONF.ai.server == "None" or \
2671 not CONF.ai.username or CONF.ai.username == "None":
2676 'host': CONF.ai.server,
2677 'username': CONF.ai.username,
2678 'port': int(CONF.ai.port),
2679 'timeout': int(CONF.ai.timeout)
2683 if CONF.ai.ssh_key_contents and CONF.ai.ssh_key_contents != "None":
2684 key_contents = CONF.ai.ssh_key_contents
2685 if CONF.ai.ssh_key_file and CONF.ai.ssh_key_file != "None":
2686 key_filename = CONF.ai.ssh_key_file
2687 if CONF.ai.password and CONF.ai.password != "None":
2688 password = CONF.ai.password