/usr/lib/python3.6/site-packages/cloudinit/config
NameSizeModeActions
schemas/-0755rm
__pycache__/-0755rm
cc_ansible.py88940644editdlrm
cc_apk_configure.py57920644editdlrm
cc_apt_configure.py429950644editdlrm
cc_apt_pipelining.py27710644editdlrm
cc_bootcmd.py29210644editdlrm
cc_byobu.py37380644editdlrm
cc_ca_certs.py93470644editdlrm
cc_chef.py141020644editdlrm
cc_disable_ec2_metadata.py20740644editdlrm
cc_disk_setup.py331360644editdlrm
cc_fan.py30930644editdlrm
cc_final_message.py34700644editdlrm
cc_growpart.py215380644editdlrm
cc_grub_dpkg.py68120644editdlrm
cc_install_hotplug.py39040644editdlrm
cc_keyboard.py24390644editdlrm
cc_keys_to_console.py36940644editdlrm
cc_landscape.py54330644editdlrm
cc_locale.py19030644editdlrm
cc_lxd.py185800644editdlrm
cc_mcollective.py62510644editdlrm
cc_migrator.py35690644editdlrm
cc_mounts.py201860644editdlrm
cc_ntp.py213410644editdlrm
cc_package_update_upgrade_install.py46520644editdlrm
cc_phone_home.py56150644editdlrm
cc_power_state_change.py75910644editdlrm
cc_puppet.py144350644editdlrm
cc_reset_rmc.py45750644editdlrm
cc_resizefs.py109830644editdlrm
cc_resolv_conf.py51030644editdlrm
cc_rh_subscription.py173780644editdlrm
cc_rightscale_userdata.py43870644editdlrm
cc_rsyslog.py138000644editdlrm
cc_runcmd.py29740644editdlrm
cc_salt_minion.py60220644editdlrm
cc_scripts_per_boot.py16970644editdlrm
cc_scripts_per_instance.py18520644editdlrm
cc_scripts_per_once.py18030644editdlrm
cc_scripts_user.py18930644editdlrm
cc_scripts_vendor.py23470644editdlrm
cc_seed_random.py48370644editdlrm
cc_set_hostname.py52540644editdlrm
cc_set_passwords.py112340644editdlrm
cc_snap.py64480644editdlrm
cc_spacewalk.py35140644editdlrm
cc_ssh.py152160644editdlrm
cc_ssh_authkey_fingerprints.py43180644editdlrm
cc_ssh_import_id.py62640644editdlrm
cc_timezone.py14920644editdlrm
cc_ubuntu_advantage.py174110644editdlrm
cc_ubuntu_autoinstall.py46040644editdlrm
cc_ubuntu_drivers.py46680644editdlrm
cc_update_etc_hosts.py52830644editdlrm
cc_update_hostname.py39630644editdlrm
cc_users_groups.py87770644editdlrm
cc_wireguard.py94390644editdlrm
cc_write_files.py68190644editdlrm
cc_write_files_deferred.py17210644editdlrm
cc_yum_add_repo.py76330644editdlrm
cc_zypper_add_repo.py67490644editdlrm
modules.py120190644editdlrm
schema.py561650644editdlrm
__init__.py140644editdlrm
Edit: /usr/lib/python3.6/site-packages/cloudinit/config/cc_rightscale_userdata.py (4387B)
# Copyright (C) 2011 Canonical Ltd. # Copyright (C) 2012, 2013 Hewlett-Packard Development Company, L.P. # # Author: Scott Moser # Author: Juerg Haefliger # # This file is part of cloud-init. See LICENSE file for license information. import logging import os from urllib.parse import parse_qs from cloudinit import url_helper as uhelp from cloudinit import util from cloudinit.cloud import Cloud from cloudinit.config import Config from cloudinit.config.schema import MetaSchema, get_meta_doc from cloudinit.distros import ALL_DISTROS from cloudinit.settings import PER_INSTANCE MY_NAME = "cc_rightscale_userdata" MY_HOOKNAME = "CLOUD_INIT_REMOTE_HOOK" """Rightscale Userdata: Support rightscale configuration hooks""" MODULE_DESCRIPTION = """\ This module adds support for RightScale configuration hooks to cloud-init. RightScale adds an entry in the format ``CLOUD_INIT_REMOTE_HOOK=http://...`` to ec2 user-data. This module checks for this line in the raw userdata and retrieves any scripts linked by the RightScale user data and places them in the user scripts configuration directory, to be run later by ``cc_scripts_user``. .. note:: the ``CLOUD_INIT_REMOTE_HOOK`` config variable is present in the raw ec2 user data only, not in any cloud-config parts **Raw user data schema**:: CLOUD_INIT_REMOTE_HOOK= """ meta: MetaSchema = { "id": "cc_rightscale_userdata", "name": "RightScale Userdata", "title": "Support rightscale configuration hooks", "description": MODULE_DESCRIPTION, "distros": [ALL_DISTROS], "frequency": PER_INSTANCE, "examples": [], "activate_by_schema_keys": [], } __doc__ = get_meta_doc(meta) LOG = logging.getLogger(__name__) # # The purpose of this script is to allow cloud-init to consume # rightscale style userdata. rightscale user data is key-value pairs # in a url-query-string like format. # # for cloud-init support, there will be a key named # 'CLOUD_INIT_REMOTE_HOOK'. # # This cloud-config module will # - read the blob of data from raw user data, and parse it as key/value # - for each key that is found, download the content to # the local instance/scripts directory and set them executable. # - the files in that directory will be run by the scripts_user module # Therefore, this must run before that. # # def handle(name: str, cfg: Config, cloud: Cloud, args: list) -> None: get_userdata_raw = getattr(cloud, "get_userdata_raw", None) if not get_userdata_raw or not callable(get_userdata_raw): LOG.debug("Failed to get raw userdata in module %s", name) return ud = get_userdata_raw() try: mdict = parse_qs(ud) if not mdict or MY_HOOKNAME not in mdict: LOG.debug( "Skipping module %s, did not find %s in parsed raw userdata", name, MY_HOOKNAME, ) return except Exception: util.logexc( LOG, "Failed to parse query string %s into a dictionary", ud ) raise wrote_fns = [] captured_excps = [] # These will eventually be then ran by the cc_scripts_user # TODO(harlowja): maybe this should just be a new user data handler?? # Instead of a late module that acts like a user data handler? scripts_d = cloud.get_ipath_cur("scripts") urls = mdict[MY_HOOKNAME] for (i, url) in enumerate(urls): fname = os.path.join(scripts_d, "rightscale-%02i" % (i)) try: resp = uhelp.readurl(url) # Ensure its a valid http response (and something gotten) if resp.ok() and resp.contents: util.write_file(fname, resp, mode=0o700) wrote_fns.append(fname) except Exception as e: captured_excps.append(e) util.logexc( LOG, "%s failed to read %s and write %s", MY_NAME, url, fname ) if wrote_fns: LOG.debug("Wrote out rightscale userdata to %s files", len(wrote_fns)) if len(wrote_fns) != len(urls): skipped = len(urls) - len(wrote_fns) LOG.debug("%s urls were skipped or failed", skipped) if captured_excps: LOG.warning( "%s failed with exceptions, re-raising the last one", len(captured_excps), ) raise captured_excps[-1]