示例#1
0
def _check_osvariant_valid(os_type, os_variant):
    return bool(
        _check_ostype_valid(os_type)
        and os_variant in Guest.list_os_variants(os_type))
示例#2
0
def _check_osvariant_valid(os_type, os_variant):
    return bool(_check_ostype_valid(os_type) and
                os_variant in Guest.list_os_variants(os_type))
示例#3
0
def _check_ostype_valid(os_type):
    return bool(os_type in Guest.list_os_types())
示例#4
0
def _check_ostype_valid(os_type):
    return bool(os_type in Guest.list_os_types())