Mini Shell Moded By TiGER HeX
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
usr
/
lib
/
python3
/
dist-packages
/
cloudinit
/
Linux midnightridazz 4.19.0-11-cloud-amd64 #1 SMP Debian 4.19.146-1 (2020-09-17) x86_64
Upload File :
New :
File
Dir
//usr/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. __VERSION__ = "20.2" _PACKAGED_VERSION = '@@PACKAGED_VERSION@@' 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 not _PACKAGED_VERSION.startswith('@@'): return _PACKAGED_VERSION return __VERSION__ # vi: ts=4 expandtab