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 /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-07-12 06:55
analyze
[ DIR ]
drwxr-xr-x
2026-07-12 06:55
cmd
[ DIR ]
drwxr-xr-x
2026-07-12 06:55
config
[ DIR ]
drwxr-xr-x
2026-07-12 06:55
distros
[ DIR ]
drwxr-xr-x
2026-07-12 06:55
filters
[ DIR ]
drwxr-xr-x
2026-07-12 06:55
handlers
[ DIR ]
drwxr-xr-x
2026-07-12 06:55
mergers
[ DIR ]
drwxr-xr-x
2026-07-12 06:55
net
[ DIR ]
drwxr-xr-x
2026-07-12 06:55
reporting
[ DIR ]
drwxr-xr-x
2026-07-12 06:55
sources
[ DIR ]
drwxr-xr-x
2026-07-12 06:55
__init__.py
0
B
-rw-r--r--
2022-11-23 21:17
apport.py
5.74
KB
-rw-r--r--
2022-11-23 21:17
atomic_helper.py
1.38
KB
-rw-r--r--
2022-11-23 21:17
cloud.py
3.49
KB
-rw-r--r--
2022-11-23 21:17
dhclient_hook.py
2.49
KB
-rw-r--r--
2022-11-23 21:17
dmi.py
6
KB
-rw-r--r--
2022-11-23 21:17
event.py
2.05
KB
-rw-r--r--
2022-11-23 21:17
features.py
2.33
KB
-rw-r--r--
2022-11-23 21:17
gpg.py
4.32
KB
-rw-r--r--
2022-11-23 21:17
helpers.py
16.43
KB
-rw-r--r--
2022-11-23 21:17
importer.py
1.75
KB
-rw-r--r--
2022-11-23 21:17
log.py
4.33
KB
-rw-r--r--
2022-11-23 21:17
netinfo.py
22.57
KB
-rw-r--r--
2022-11-23 21:17
patcher.py
1.1
KB
-rw-r--r--
2022-11-23 21:17
persistence.py
2.54
KB
-rw-r--r--
2022-11-23 21:17
registry.py
1.02
KB
-rw-r--r--
2022-11-23 21:17
safeyaml.py
5.84
KB
-rw-r--r--
2022-11-23 21:17
settings.py
1.99
KB
-rw-r--r--
2022-11-23 21:17
signal_handler.py
1.78
KB
-rw-r--r--
2022-11-23 21:17
simpletable.py
1.93
KB
-rw-r--r--
2022-11-23 21:17
ssh_util.py
20.16
KB
-rw-r--r--
2022-11-23 21:17
stages.py
34.31
KB
-rw-r--r--
2022-11-23 21:17
subp.py
13.24
KB
-rw-r--r--
2022-11-23 21:17
temp_utils.py
3.19
KB
-rw-r--r--
2022-11-23 21:17
templater.py
5.83
KB
-rw-r--r--
2022-11-23 21:17
type_utils.py
726
B
-rw-r--r--
2022-11-23 21:17
url_helper.py
27.92
KB
-rw-r--r--
2022-11-23 21:17
user_data.py
14.49
KB
-rw-r--r--
2022-11-23 21:17
util.py
88.21
KB
-rw-r--r--
2022-11-23 21:17
version.py
588
B
-rw-r--r--
2022-11-23 21:17
warnings.py
3.84
KB
-rw-r--r--
2022-11-23 21:17
Save
Rename
# Copyright (C) 2012 Canonical Ltd. # Copyright (C) 2012 Hewlett-Packard Development Company, L.P. # Copyright (C) 2012 Yahoo! Inc. # Copyright (C) 2016 Amazon.com, Inc. or its affiliates. # # Author: Scott Moser <scott.moser@canonical.com> # Author: Juerg Haefliger <juerg.haefliger@hp.com> # Author: Joshua Harlow <harlowja@yahoo-inc.com> # Author: Andrew Jorgensen <ajorgens@amazon.com> # # This file is part of cloud-init. See LICENSE file for license information. # noqa: E402 import collections import re import sys from typing import Type from cloudinit import log as logging from cloudinit import type_utils as tu from cloudinit import util from cloudinit.atomic_helper import write_file JUndefined: Type try: from jinja2 import DebugUndefined as _DebugUndefined from jinja2 import Template as JTemplate JINJA_AVAILABLE = True JUndefined = _DebugUndefined except (ImportError, AttributeError): JINJA_AVAILABLE = False JUndefined = object LOG = logging.getLogger(__name__) TYPE_MATCHER = re.compile(r"##\s*template:(.*)", re.I) BASIC_MATCHER = re.compile(r"\$\{([A-Za-z0-9_.]+)\}|\$([A-Za-z0-9_.]+)") MISSING_JINJA_PREFIX = "CI_MISSING_JINJA_VAR/" # Mypy, and the PEP 484 ecosystem in general, does not support creating # classes with dynamic base types: https://stackoverflow.com/a/59636248 class UndefinedJinjaVariable(JUndefined): # type: ignore """Class used to represent any undefined jinja template variable.""" def __str__(self): return "%s%s" % (MISSING_JINJA_PREFIX, self._undefined_name) def __sub__(self, other): other = str(other).replace(MISSING_JINJA_PREFIX, "") raise TypeError( 'Undefined jinja variable: "{this}-{other}". Jinja tried' ' subtraction. Perhaps you meant "{this}_{other}"?'.format( this=self._undefined_name, other=other ) ) def basic_render(content, params): """This does simple replacement of bash variable like templates. It identifies patterns like ${a} or $a and can also identify patterns like ${a.b} or $a.b which will look for a key 'b' in the dictionary rooted by key 'a'. """ def replacer(match): # Only 1 of the 2 groups will actually have a valid entry. name = match.group(1) if name is None: name = match.group(2) if name is None: raise RuntimeError("Match encountered but no valid group present") path = collections.deque(name.split(".")) selected_params = params while len(path) > 1: key = path.popleft() if not isinstance(selected_params, dict): raise TypeError( "Can not traverse into" " non-dictionary '%s' of type %s while" " looking for subkey '%s'" % (selected_params, tu.obj_name(selected_params), key) ) selected_params = selected_params[key] key = path.popleft() if not isinstance(selected_params, dict): raise TypeError( "Can not extract key '%s' from non-dictionary '%s' of type %s" % (key, selected_params, tu.obj_name(selected_params)) ) return str(selected_params[key]) return BASIC_MATCHER.sub(replacer, content) def detect_template(text): def jinja_render(content, params): # keep_trailing_newline is in jinja2 2.7+, not 2.6 add = "\n" if content.endswith("\n") else "" return ( JTemplate( content, undefined=UndefinedJinjaVariable, trim_blocks=True, extensions=["jinja2.ext.do"], ).render(**params) + add ) if text.find("\n") != -1: ident, rest = text.split("\n", 1) else: ident = text rest = "" type_match = TYPE_MATCHER.match(ident) if not type_match: return ("basic", basic_render, text) else: template_type = type_match.group(1).lower().strip() if template_type not in ("jinja", "basic"): raise ValueError( "Unknown template rendering type '%s' requested" % template_type ) if template_type == "jinja" and not JINJA_AVAILABLE: LOG.warning( "Jinja not available as the selected renderer for" " desired template, reverting to the basic renderer." ) return ("basic", basic_render, rest) elif template_type == "jinja" and JINJA_AVAILABLE: return ("jinja", jinja_render, rest) # Only thing left over is the basic renderer (it is always available). return ("basic", basic_render, rest) def render_from_file(fn, params): if not params: params = {} template_type, renderer, content = detect_template(util.load_file(fn)) LOG.debug("Rendering content of '%s' using renderer %s", fn, template_type) return renderer(content, params) def render_to_file(fn, outfn, params, mode=0o644): contents = render_from_file(fn, params) util.write_file(outfn, contents, mode=mode) def render_string_to_file(content, outfn, params, mode=0o644): """Render string""" contents = render_string(content, params) util.write_file(outfn, contents, mode=mode) def render_string(content, params): """Render string""" if not params: params = {} _template_type, renderer, content = detect_template(content) return renderer(content, params) def render_cloudcfg(variant, template, output): with open(template, "r") as fh: contents = fh.read() tpl_params = {"variant": variant} contents = (render_string(contents, tpl_params)).rstrip() + "\n" util.load_yaml(contents) if output == "-": sys.stdout.write(contents) else: write_file(output, contents, omode="w")