Server IP : 13.213.54.232 / Your IP : 216.73.216.72 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ip-172-31-17-110 6.8.0-1029-aws #31~22.04.1-Ubuntu SMP Thu Apr 24 21:16:18 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 7.1.33-67+ubuntu22.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/root/usr/lib/python3/dist-packages/uaclient/cli/ |
Upload File : |
import time from uaclient import actions, config, event_logger, messages, status, util from uaclient.cli.commands import ProArgument, ProArgumentGroup, ProCommand from uaclient.cli.parser import HelpCategory event = event_logger.get_event_logger() def action_status(args, *, cfg: config.UAConfig, **kwargs): if not cfg: cfg = config.UAConfig() show_all = args.all if args else False token = args.simulate_with_token if args else None active_value = status.UserFacingConfigStatus.ACTIVE.value status_dict, ret = actions.status( cfg, simulate_with_token=token, show_all=show_all ) config_active = bool(status_dict["execution_status"] == active_value) if args and args.wait and config_active: while status_dict["execution_status"] == active_value: event.info(".", end="") time.sleep(1) status_dict, ret = actions.status( cfg, simulate_with_token=token, show_all=show_all, ) event.info("") event.set_output_content(status_dict) output = status.format_tabular(status_dict, show_all=show_all) event.info(util.handle_unicode_characters(output)) event.process_events() return ret status_command = ProCommand( "status", help=messages.CLI_ROOT_STATUS, description=messages.CLI_STATUS_DESC, action=action_status, preserve_description=True, help_category=HelpCategory.QUICKSTART, help_position=1, argument_groups=[ ProArgumentGroup( arguments=[ ProArgument( "--wait", help=messages.CLI_STATUS_WAIT, action="store_true", ), ProArgument( "--format", help=messages.CLI_FORMAT_DESC.format(default="tabular"), action="store", choices=["tabular", "json", "yaml"], default="tabular", ), ProArgument( "--simulate-with-token", help=messages.CLI_STATUS_SIMULATE_WITH_TOKEN, metavar="TOKEN", action="store", ), ProArgument( "--all", help=messages.CLI_STATUS_ALL, action="store_true" ), ] ) ], )