Linux ams-business-5.hostwindsdns.com 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
LiteSpeed
Server IP : 23.254.231.17 & Your IP : 216.73.217.85
Domains :
Cant Read [ /etc/named.conf ]
User : uxvsuhne
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python3.6 /
site-packages /
cloudinit /
sources /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-05-29 11:31
azure
[ DIR ]
drwxr-xr-x
2026-05-29 11:31
helpers
[ DIR ]
drwxr-xr-x
2026-05-29 11:31
DataSourceAkamai.py
12.67
KB
-rw-r--r--
2023-12-04 11:47
DataSourceAliYun.py
2.97
KB
-rw-r--r--
2023-12-04 11:47
DataSourceAltCloud.py
8.23
KB
-rw-r--r--
2023-12-04 11:47
DataSourceAzure.py
72.95
KB
-rw-r--r--
2026-05-28 15:47
DataSourceBigstep.py
1.9
KB
-rw-r--r--
2023-12-04 11:47
DataSourceCloudSigma.py
3.86
KB
-rw-r--r--
2023-12-04 11:47
DataSourceCloudStack.py
8.09
KB
-rw-r--r--
2026-05-28 15:47
DataSourceConfigDrive.py
10.97
KB
-rw-r--r--
2023-12-04 11:47
DataSourceDigitalOcean.py
4.14
KB
-rw-r--r--
2023-12-04 11:47
DataSourceEc2.py
35.75
KB
-rw-r--r--
2023-12-04 11:47
DataSourceExoscale.py
8.79
KB
-rw-r--r--
2023-12-04 11:47
DataSourceGCE.py
13.82
KB
-rw-r--r--
2023-12-04 11:47
DataSourceHetzner.py
5.31
KB
-rw-r--r--
2023-12-04 11:47
DataSourceIBMCloud.py
14.03
KB
-rw-r--r--
2023-12-04 11:47
DataSourceLXD.py
17.05
KB
-rw-r--r--
2023-12-04 11:47
DataSourceMAAS.py
15.13
KB
-rw-r--r--
2023-12-04 11:47
DataSourceNWCS.py
4.38
KB
-rw-r--r--
2023-12-04 11:47
DataSourceNoCloud.py
13
KB
-rw-r--r--
2023-12-04 11:47
DataSourceNone.py
1.34
KB
-rw-r--r--
2023-12-04 11:47
DataSourceOVF.py
12.66
KB
-rw-r--r--
2023-12-04 11:47
DataSourceOpenNebula.py
15.76
KB
-rw-r--r--
2023-12-04 11:47
DataSourceOpenStack.py
10.33
KB
-rw-r--r--
2023-12-04 11:47
DataSourceOracle.py
14.59
KB
-rw-r--r--
2023-12-04 11:47
DataSourceRbxCloud.py
7.84
KB
-rw-r--r--
2026-05-28 15:47
DataSourceScaleway.py
15.43
KB
-rw-r--r--
2023-12-04 11:47
DataSourceSmartOS.py
33.97
KB
-rw-r--r--
2023-12-04 11:47
DataSourceUpCloud.py
5.48
KB
-rw-r--r--
2023-12-04 11:47
DataSourceVMware.py
36.04
KB
-rw-r--r--
2026-05-28 15:47
DataSourceVultr.py
4.48
KB
-rw-r--r--
2023-12-04 11:47
__init__.py
42.99
KB
-rw-r--r--
2026-05-28 15:47
Save
Rename
# 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. from cloudinit import sources class DataSourceNone(sources.DataSource): dsname = "None" def __init__(self, sys_cfg, distro, paths, ud_proc=None): sources.DataSource.__init__(self, sys_cfg, distro, paths, ud_proc) self.metadata = {} self.userdata_raw = "" def _get_data(self): # If the datasource config has any provided 'fallback' # userdata or metadata, use it... if "userdata_raw" in self.ds_cfg: self.userdata_raw = self.ds_cfg["userdata_raw"] if "metadata" in self.ds_cfg: self.metadata = self.ds_cfg["metadata"] return True def _get_subplatform(self): """Return the subplatform metadata source details.""" return "config" def get_instance_id(self): return "iid-datasource-none" @property def is_disconnected(self): return True # Used to match classes to dependencies datasources = [ (DataSourceNone, (sources.DEP_FILESYSTEM, sources.DEP_NETWORK)), (DataSourceNone, []), ] # Return a list of data sources that match this set of dependencies def get_datasource_list(depends): return sources.list_from_depends(depends, datasources)