Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
usr /
lib /
ubuntu-advantage /
[ HOME SHELL ]
Name
Size
Permission
Action
add_esm_snapshot_auth.py
1.88
KB
-rw-r--r--
apt-esm-json-hook
50.32
KB
-rwxr-xr-x
apt_news.py
565
B
-rw-r--r--
auto_attach.py
3.68
KB
-rw-r--r--
cloud-id-shim.sh
500
B
-rwxr-xr-x
convert_list_to_deb822.py
2.37
KB
-rw-r--r--
daemon.py
2.49
KB
-rw-r--r--
esm_cache.py
491
B
-rwxr-xr-x
migrate_user_config.py
5.37
KB
-rw-r--r--
patch_status_json.py
2.47
KB
-rwxr-xr-x
postinst-migrations.sh
3.53
KB
-rwxr-xr-x
reboot_cmds.py
4.9
KB
-rw-r--r--
timer.py
5.98
KB
-rw-r--r--
upgrade_lts_contract.py
621
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : daemon.py
import logging import os import sys import time from uaclient import http, log, system from uaclient.config import UAConfig from uaclient.daemon import poll_for_pro_license, retry_auto_attach LOG = logging.getLogger("ubuntupro.daemon") # 10 seconds times 120 = 20 minutes WAIT_FOR_CLOUD_CONFIG_SLEEP_TIME = 10 WAIT_FOR_CLOUD_CONFIG_POLL_TIMES = 120 def _wait_for_cloud_config(): LOG.debug("waiting for cloud-config.service to finish") for i in range(WAIT_FOR_CLOUD_CONFIG_POLL_TIMES + 1): state = system.get_systemd_unit_active_state("cloud-config.service") ci_state = system.get_systemd_unit_active_state("cloud-init.service") LOG.debug("cloud-config.service state: %r", state) LOG.debug("cloud-init.service state: %r", ci_state) # if cloud-config.service is not yet activating but cloud-init is # running, wait for cloud-config to start if state == "activating" or ( state == "inactive" and (ci_state == "activating" or ci_state == "active") ): if i < WAIT_FOR_CLOUD_CONFIG_POLL_TIMES: LOG.debug( "cloud-config.service is activating. " "waiting to check again." ) time.sleep(WAIT_FOR_CLOUD_CONFIG_SLEEP_TIME) else: LOG.warning( "cloud-config.service is still activating after " "20 minutes. continuing anyway" ) return else: LOG.debug("cloud-config.service is not activating. continuing") return def main() -> int: log.setup_journald_logging() cfg = UAConfig() http.configure_web_proxy(cfg.http_proxy, cfg.https_proxy) LOG.info("daemon starting") _wait_for_cloud_config() LOG.debug("checking for condition files") is_correct_cloud = any( os.path.exists("/run/cloud-init/cloud-id-{}".format(cloud)) for cloud in ("gce", "azure", "lxd") ) if is_correct_cloud and not os.path.exists( retry_auto_attach.FLAG_FILE_PATH ): LOG.info("mode: poll for pro license") poll_for_pro_license.poll_for_pro_license(cfg) # not using elif because `poll_for_pro_license` may create the flag file if os.path.exists(retry_auto_attach.FLAG_FILE_PATH): LOG.info("mode: retry auto attach") retry_auto_attach.retry_auto_attach(cfg) LOG.info("daemon ending") return 0 if __name__ == "__main__": sys.exit(main())
Close