HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux S202606089271 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64
User: groatmachine_usr (1022)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: //lib/python3/dist-packages/cloudinit/version.py
# Copyright (C) 2012 Yahoo! Inc.
#
# Author: Joshua Harlow <harlowja@yahoo-inc.com>
#
# This file is part of cloud-init. See LICENSE file for license information.

try:
    from cloudinit import meson_versions  # type: ignore

    __VERSION__ = meson_versions.UPSTREAM_VERSION
    _DOWNSTREAM_VERSION = meson_versions.DOWNSTREAM_VERSION
except ImportError:
    __VERSION__ = "@MISSING_MESON_BUILD_ARTIFACT@"
    _DOWNSTREAM_VERSION = "26.1-0ubuntu1~24.04.1"  # Optional for packagers


FEATURES = [
    # supports network config version 1
    "NETWORK_CONFIG_V1",
    # supports network config version 2 (netplan)
    "NETWORK_CONFIG_V2",
]


def version_string():
    """Extract a version string from cloud-init."""
    if "DOWNSTREAM_VERSION" not in _DOWNSTREAM_VERSION:
        return _DOWNSTREAM_VERSION
    return __VERSION__