Exemplo n.º 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))
Exemplo n.º 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))
Exemplo n.º 3
0
def _check_ostype_valid(os_type):
    return bool(os_type in Guest.list_os_types())
Exemplo n.º 4
0
def _check_ostype_valid(os_type):
    return bool(os_type in Guest.list_os_types())