0ccd804849
based on Change-Id: Ie759857fb94db9aa94aaeaeda2c6ab5bb159cc9e All the work done for fuel-library packaging Should be overriden by the change above after we switch CI to package-based implements blueprint: package-fuel-components Change-Id: I48ed37a009b42f0a9a21cc869a869edb505b39c3
29 lines
967 B
Python
29 lines
967 B
Python
#!/usr/bin/python
|
|
# Copyright 2014 Mirantis, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
|
|
import sys
|
|
import yaml
|
|
|
|
astuteyaml=sys.argv[1]
|
|
data=yaml.load(open(astuteyaml))
|
|
for outerkey in data.keys():
|
|
if isinstance(data[outerkey], dict):
|
|
for innerkey in data[outerkey].keys():
|
|
print("%s_%s=\'%s\'" % (outerkey, innerkey, data[outerkey][innerkey]))
|
|
else:
|
|
print("%s=\'%s\'" % (outerkey, data[outerkey]))
|
|
|