Example #1
0
def _nic_values_to_args(nic_string, tmp_dir):
    LOG.debug("NIC string %s", nic_string)
    nic_vars = _ensure_nic_vars(utils.parse_keyvals(nic_string))
    config_contents = _render_nic_template(nic_vars)
    config_file_path = NIC_CONFIG_PREFIX + nic_vars['name']
    tmp_config_file_path = path.join(tmp_dir, config_file_path)
    tmp_config_dir_path = path.dirname(tmp_config_file_path)
    target_config_file_path = path.join('/', config_file_path)

    if not path.exists(tmp_config_dir_path):
        os.makedirs(tmp_config_dir_path, 0o700)
    with open(tmp_config_file_path, 'w') as config_file:
        config_file.write(config_contents)
    LOG.info("Adding NIC with params %s", str(nic_vars))
    return [
        '--upload',
        ':'.join([tmp_config_file_path, target_config_file_path]),
    ]
Example #2
0
File: nic.py Project: jistr/rejviz
def _nic_values_to_args(nic_string, tmp_dir):
    LOG.debug("NIC string %s", nic_string)
    nic_vars = _ensure_nic_vars(utils.parse_keyvals(nic_string))
    config_contents = _render_nic_template(nic_vars)
    config_file_path = NIC_CONFIG_PREFIX + nic_vars['name']
    tmp_config_file_path = path.join(tmp_dir, config_file_path)
    tmp_config_dir_path = path.dirname(tmp_config_file_path)
    target_config_file_path = path.join('/', config_file_path)

    if not path.exists(tmp_config_dir_path):
        os.makedirs(tmp_config_dir_path, 0o700)
    with open(tmp_config_file_path, 'w') as config_file:
        config_file.write(config_contents)
    LOG.info("Adding NIC with params %s", str(nic_vars))
    return [
        '--upload',
        ':'.join([tmp_config_file_path, target_config_file_path]),
    ]
Example #3
0
 def test_parse_keyvals(self):
     expected = {'a': 'b', 'c': 'd'}
     self.assertEqual(expected, utils.parse_keyvals("a=b,c=d"))
     self.assertEqual(expected, utils.parse_keyvals("a:b/c:d", '/', ':'))