summaryrefslogtreecommitdiff
path: root/tests/cloud_tests/images/__init__.py
blob: b27d693108ac80e4ce1613bf20200b7dcc8ae635 (plain)
1
2
3
4
5
6
7
8
9
10
11
# This file is part of cloud-init. See LICENSE file for license information.


def get_image(platform, config):
    """
    get image from platform object using os_name, looking up img_conf in main
    config file
    """
    return platform.get_image(config)

# vi: ts=4 expandtab