import logging import os import sys from systemd.daemon import notify # type: ignore from uaclient.config import UAConfig from uaclient.daemon import ( poll_for_pro_license, retry_auto_attach, setup_logging, ) LOG = logging.getLogger("pro") def main() -> int: cfg = UAConfig() setup_logging( logging.INFO, logging.DEBUG, log_file=cfg.daemon_log_file, logger=LOG ) # The ua-daemon logger should log everything to its file # Make sure the ua-daemon logger does not generate double logging # by propagating to the root logger LOG.propagate = False # The root logger should only log errors to the daemon log file setup_logging( logging.CRITICAL, logging.ERROR, log_file=cfg.daemon_log_file, logger=logging.getLogger(), ) LOG.debug("daemon starting") notify("READY=1") if os.path.exists("/run/cloud-init/cloud-id-gce") 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.debug("daemon ending") return 0 if __name__ == "__main__": sys.exit(main())
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
apt-esm-json-hook | File | 54.31 KB | 0755 |
|
apt_news.py | File | 721 B | 0644 |
|
auto_attach.py | File | 2.98 KB | 0644 |
|
cloud-id-shim.sh | File | 500 B | 0755 |
|
daemon.py | File | 1.39 KB | 0644 |
|
esm_cache.py | File | 592 B | 0755 |
|
migrate_user_config.py | File | 5.42 KB | 0644 |
|
patch_status_json.py | File | 2.36 KB | 0755 |
|
reboot_cmds.py | File | 5.17 KB | 0644 |
|
timer.py | File | 6.36 KB | 0644 |
|
upgrade_lts_contract.py | File | 3.68 KB | 0755 |
|