Lines Matching refs:ai
107 OPT_GROUP = cfg.OptGroup(name='ai',
1506 if not CONF.ai.server or CONF.ai.server == "None":
1511 if not CONF.ai.username or CONF.ai.username == "None":
1516 if ((not CONF.ai.password or CONF.ai.password == "None") and
1517 (not CONF.ai.ssh_key_file or CONF.ai.ssh_key_file == "None") and
1518 (not CONF.ai.ssh_key_contents or
1519 CONF.ai.ssh_key_contents == "None")):
1635 timer.start(interval=int(CONF.ai.deploy_interval))
1775 # Recreate new ai client for this mac address
1789 # (Re)Create new ai Manifest for this mac address
2420 self._derived_manifest = CONF.ai.derived_manifest
2775 if not CONF.ai.server or CONF.ai.server == "None" or \
2776 not CONF.ai.username or CONF.ai.username == "None":
2781 'host': CONF.ai.server,
2782 'username': CONF.ai.username,
2783 'port': int(CONF.ai.port),
2784 'timeout': int(CONF.ai.timeout)
2788 if CONF.ai.ssh_key_contents and CONF.ai.ssh_key_contents != "None":
2789 key_contents = CONF.ai.ssh_key_contents
2790 if CONF.ai.ssh_key_file and CONF.ai.ssh_key_file != "None":
2791 key_filename = CONF.ai.ssh_key_file
2792 if CONF.ai.password and CONF.ai.password != "None":
2793 password = CONF.ai.password