ominfra 0.0.0.dev424__py3-none-any.whl → 0.0.0.dev425__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1328,6 +1328,37 @@ class InstanceType(_enum.Enum):
1328
1328
  R8I_FLEX_8XLARGE = 'r8i-flex.8xlarge'
1329
1329
  R8I_FLEX_12XLARGE = 'r8i-flex.12xlarge'
1330
1330
  R8I_FLEX_16XLARGE = 'r8i-flex.16xlarge'
1331
+ M8I_LARGE = 'm8i.large'
1332
+ M8I_XLARGE = 'm8i.xlarge'
1333
+ M8I_2XLARGE = 'm8i.2xlarge'
1334
+ M8I_4XLARGE = 'm8i.4xlarge'
1335
+ M8I_8XLARGE = 'm8i.8xlarge'
1336
+ M8I_12XLARGE = 'm8i.12xlarge'
1337
+ M8I_16XLARGE = 'm8i.16xlarge'
1338
+ M8I_24XLARGE = 'm8i.24xlarge'
1339
+ M8I_32XLARGE = 'm8i.32xlarge'
1340
+ M8I_48XLARGE = 'm8i.48xlarge'
1341
+ M8I_96XLARGE = 'm8i.96xlarge'
1342
+ M8I_METAL_48XL = 'm8i.metal-48xl'
1343
+ M8I_METAL_96XL = 'm8i.metal-96xl'
1344
+ M8I_FLEX_LARGE = 'm8i-flex.large'
1345
+ M8I_FLEX_XLARGE = 'm8i-flex.xlarge'
1346
+ M8I_FLEX_2XLARGE = 'm8i-flex.2xlarge'
1347
+ M8I_FLEX_4XLARGE = 'm8i-flex.4xlarge'
1348
+ M8I_FLEX_8XLARGE = 'm8i-flex.8xlarge'
1349
+ M8I_FLEX_12XLARGE = 'm8i-flex.12xlarge'
1350
+ M8I_FLEX_16XLARGE = 'm8i-flex.16xlarge'
1351
+ I8GE_LARGE = 'i8ge.large'
1352
+ I8GE_XLARGE = 'i8ge.xlarge'
1353
+ I8GE_2XLARGE = 'i8ge.2xlarge'
1354
+ I8GE_3XLARGE = 'i8ge.3xlarge'
1355
+ I8GE_6XLARGE = 'i8ge.6xlarge'
1356
+ I8GE_12XLARGE = 'i8ge.12xlarge'
1357
+ I8GE_18XLARGE = 'i8ge.18xlarge'
1358
+ I8GE_24XLARGE = 'i8ge.24xlarge'
1359
+ I8GE_48XLARGE = 'i8ge.48xlarge'
1360
+ I8GE_METAL_24XL = 'i8ge.metal-24xl'
1361
+ I8GE_METAL_48XL = 'i8ge.metal-48xl'
1331
1362
 
1332
1363
 
1333
1364
  class InstanceTypeHypervisor(_enum.Enum):
@@ -2356,13 +2356,13 @@ def format_num_bytes(num_bytes: int) -> str:
2356
2356
 
2357
2357
 
2358
2358
  ########################################
2359
- # ../../../../../omlish/logs/filters.py
2359
+ # ../../../../../omlish/logs/std/filters.py
2360
2360
 
2361
2361
 
2362
2362
  ##
2363
2363
 
2364
2364
 
2365
- class TidLogFilter(logging.Filter):
2365
+ class TidLoggingFilter(logging.Filter):
2366
2366
  def filter(self, record):
2367
2367
  # FIXME: handle better - missing from wasm and cosmos
2368
2368
  if hasattr(threading, 'get_native_id'):
@@ -2373,13 +2373,13 @@ class TidLogFilter(logging.Filter):
2373
2373
 
2374
2374
 
2375
2375
  ########################################
2376
- # ../../../../../omlish/logs/proxy.py
2376
+ # ../../../../../omlish/logs/std/proxy.py
2377
2377
 
2378
2378
 
2379
2379
  ##
2380
2380
 
2381
2381
 
2382
- class ProxyLogFilterer(logging.Filterer):
2382
+ class ProxyLoggingFilterer(logging.Filterer):
2383
2383
  def __init__(self, underlying: logging.Filterer) -> None: # noqa
2384
2384
  self._underlying = underlying
2385
2385
 
@@ -2405,9 +2405,9 @@ class ProxyLogFilterer(logging.Filterer):
2405
2405
  return self._underlying.filter(record)
2406
2406
 
2407
2407
 
2408
- class ProxyLogHandler(ProxyLogFilterer, logging.Handler):
2408
+ class ProxyLoggingHandler(ProxyLoggingFilterer, logging.Handler):
2409
2409
  def __init__(self, underlying: logging.Handler) -> None: # noqa
2410
- ProxyLogFilterer.__init__(self, underlying)
2410
+ ProxyLoggingFilterer.__init__(self, underlying)
2411
2411
 
2412
2412
  _underlying: logging.Handler
2413
2413
 
@@ -4618,7 +4618,7 @@ def check_lite_runtime_version() -> None:
4618
4618
 
4619
4619
 
4620
4620
  ########################################
4621
- # ../../../../../omlish/logs/json.py
4621
+ # ../../../../../omlish/logs/std/json.py
4622
4622
  """
4623
4623
  TODO:
4624
4624
  - translate json keys
@@ -4628,7 +4628,7 @@ TODO:
4628
4628
  ##
4629
4629
 
4630
4630
 
4631
- class JsonLogFormatter(logging.Formatter):
4631
+ class JsonLoggingFormatter(logging.Formatter):
4632
4632
  KEYS: ta.Mapping[str, bool] = {
4633
4633
  'name': False,
4634
4634
  'msg': False,
@@ -4957,6 +4957,7 @@ def load_config_file_obj(
4957
4957
  # ../../../../../omlish/logs/standard.py
4958
4958
  """
4959
4959
  TODO:
4960
+ - !! move to std !!
4960
4961
  - structured
4961
4962
  - prefixed
4962
4963
  - debug
@@ -4978,7 +4979,7 @@ STANDARD_LOG_FORMAT_PARTS = [
4978
4979
  ]
4979
4980
 
4980
4981
 
4981
- class StandardLogFormatter(logging.Formatter):
4982
+ class StandardLoggingFormatter(logging.Formatter):
4982
4983
  @staticmethod
4983
4984
  def build_log_format(parts: ta.Iterable[ta.Tuple[str, str]]) -> str:
4984
4985
  return ' '.join(v for k, v in parts)
@@ -4997,7 +4998,7 @@ class StandardLogFormatter(logging.Formatter):
4997
4998
  ##
4998
4999
 
4999
5000
 
5000
- class StandardConfiguredLogHandler(ProxyLogHandler):
5001
+ class StandardConfiguredLoggingHandler(ProxyLoggingHandler):
5001
5002
  def __init_subclass__(cls, **kwargs):
5002
5003
  raise TypeError('This class serves only as a marker and should not be subclassed.')
5003
5004
 
@@ -5030,7 +5031,7 @@ def configure_standard_logging(
5030
5031
  target: ta.Optional[logging.Logger] = None,
5031
5032
  force: bool = False,
5032
5033
  handler_factory: ta.Optional[ta.Callable[[], logging.Handler]] = None,
5033
- ) -> ta.Optional[StandardConfiguredLogHandler]:
5034
+ ) -> ta.Optional[StandardConfiguredLoggingHandler]:
5034
5035
  with _locking_logging_module_lock():
5035
5036
  if target is None:
5036
5037
  target = logging.root
@@ -5038,7 +5039,7 @@ def configure_standard_logging(
5038
5039
  #
5039
5040
 
5040
5041
  if not force:
5041
- if any(isinstance(h, StandardConfiguredLogHandler) for h in list(target.handlers)):
5042
+ if any(isinstance(h, StandardConfiguredLoggingHandler) for h in list(target.handlers)):
5042
5043
  return None
5043
5044
 
5044
5045
  #
@@ -5052,14 +5053,14 @@ def configure_standard_logging(
5052
5053
 
5053
5054
  formatter: logging.Formatter
5054
5055
  if json:
5055
- formatter = JsonLogFormatter()
5056
+ formatter = JsonLoggingFormatter()
5056
5057
  else:
5057
- formatter = StandardLogFormatter(StandardLogFormatter.build_log_format(STANDARD_LOG_FORMAT_PARTS))
5058
+ formatter = StandardLoggingFormatter(StandardLoggingFormatter.build_log_format(STANDARD_LOG_FORMAT_PARTS))
5058
5059
  handler.setFormatter(formatter)
5059
5060
 
5060
5061
  #
5061
5062
 
5062
- handler.addFilter(TidLogFilter())
5063
+ handler.addFilter(TidLoggingFilter())
5063
5064
 
5064
5065
  #
5065
5066
 
@@ -5072,7 +5073,7 @@ def configure_standard_logging(
5072
5073
 
5073
5074
  #
5074
5075
 
5075
- return StandardConfiguredLogHandler(handler)
5076
+ return StandardConfiguredLoggingHandler(handler)
5076
5077
 
5077
5078
 
5078
5079
  ########################################
ominfra/scripts/manage.py CHANGED
@@ -3659,13 +3659,13 @@ def typing_annotations_attr() -> str:
3659
3659
 
3660
3660
 
3661
3661
  ########################################
3662
- # ../../../omlish/logs/filters.py
3662
+ # ../../../omlish/logs/std/filters.py
3663
3663
 
3664
3664
 
3665
3665
  ##
3666
3666
 
3667
3667
 
3668
- class TidLogFilter(logging.Filter):
3668
+ class TidLoggingFilter(logging.Filter):
3669
3669
  def filter(self, record):
3670
3670
  # FIXME: handle better - missing from wasm and cosmos
3671
3671
  if hasattr(threading, 'get_native_id'):
@@ -3676,13 +3676,13 @@ class TidLogFilter(logging.Filter):
3676
3676
 
3677
3677
 
3678
3678
  ########################################
3679
- # ../../../omlish/logs/proxy.py
3679
+ # ../../../omlish/logs/std/proxy.py
3680
3680
 
3681
3681
 
3682
3682
  ##
3683
3683
 
3684
3684
 
3685
- class ProxyLogFilterer(logging.Filterer):
3685
+ class ProxyLoggingFilterer(logging.Filterer):
3686
3686
  def __init__(self, underlying: logging.Filterer) -> None: # noqa
3687
3687
  self._underlying = underlying
3688
3688
 
@@ -3708,9 +3708,9 @@ class ProxyLogFilterer(logging.Filterer):
3708
3708
  return self._underlying.filter(record)
3709
3709
 
3710
3710
 
3711
- class ProxyLogHandler(ProxyLogFilterer, logging.Handler):
3711
+ class ProxyLoggingHandler(ProxyLoggingFilterer, logging.Handler):
3712
3712
  def __init__(self, underlying: logging.Handler) -> None: # noqa
3713
- ProxyLogFilterer.__init__(self, underlying)
3713
+ ProxyLoggingFilterer.__init__(self, underlying)
3714
3714
 
3715
3715
  _underlying: logging.Handler
3716
3716
 
@@ -7277,7 +7277,7 @@ class PredicateTimeout(Timeout):
7277
7277
 
7278
7278
 
7279
7279
  ########################################
7280
- # ../../../omlish/logs/json.py
7280
+ # ../../../omlish/logs/std/json.py
7281
7281
  """
7282
7282
  TODO:
7283
7283
  - translate json keys
@@ -7287,7 +7287,7 @@ TODO:
7287
7287
  ##
7288
7288
 
7289
7289
 
7290
- class JsonLogFormatter(logging.Formatter):
7290
+ class JsonLoggingFormatter(logging.Formatter):
7291
7291
  KEYS: ta.Mapping[str, bool] = {
7292
7292
  'name': False,
7293
7293
  'msg': False,
@@ -9386,6 +9386,7 @@ inj = InjectionApi()
9386
9386
  # ../../../omlish/logs/standard.py
9387
9387
  """
9388
9388
  TODO:
9389
+ - !! move to std !!
9389
9390
  - structured
9390
9391
  - prefixed
9391
9392
  - debug
@@ -9407,7 +9408,7 @@ STANDARD_LOG_FORMAT_PARTS = [
9407
9408
  ]
9408
9409
 
9409
9410
 
9410
- class StandardLogFormatter(logging.Formatter):
9411
+ class StandardLoggingFormatter(logging.Formatter):
9411
9412
  @staticmethod
9412
9413
  def build_log_format(parts: ta.Iterable[ta.Tuple[str, str]]) -> str:
9413
9414
  return ' '.join(v for k, v in parts)
@@ -9426,7 +9427,7 @@ class StandardLogFormatter(logging.Formatter):
9426
9427
  ##
9427
9428
 
9428
9429
 
9429
- class StandardConfiguredLogHandler(ProxyLogHandler):
9430
+ class StandardConfiguredLoggingHandler(ProxyLoggingHandler):
9430
9431
  def __init_subclass__(cls, **kwargs):
9431
9432
  raise TypeError('This class serves only as a marker and should not be subclassed.')
9432
9433
 
@@ -9459,7 +9460,7 @@ def configure_standard_logging(
9459
9460
  target: ta.Optional[logging.Logger] = None,
9460
9461
  force: bool = False,
9461
9462
  handler_factory: ta.Optional[ta.Callable[[], logging.Handler]] = None,
9462
- ) -> ta.Optional[StandardConfiguredLogHandler]:
9463
+ ) -> ta.Optional[StandardConfiguredLoggingHandler]:
9463
9464
  with _locking_logging_module_lock():
9464
9465
  if target is None:
9465
9466
  target = logging.root
@@ -9467,7 +9468,7 @@ def configure_standard_logging(
9467
9468
  #
9468
9469
 
9469
9470
  if not force:
9470
- if any(isinstance(h, StandardConfiguredLogHandler) for h in list(target.handlers)):
9471
+ if any(isinstance(h, StandardConfiguredLoggingHandler) for h in list(target.handlers)):
9471
9472
  return None
9472
9473
 
9473
9474
  #
@@ -9481,14 +9482,14 @@ def configure_standard_logging(
9481
9482
 
9482
9483
  formatter: logging.Formatter
9483
9484
  if json:
9484
- formatter = JsonLogFormatter()
9485
+ formatter = JsonLoggingFormatter()
9485
9486
  else:
9486
- formatter = StandardLogFormatter(StandardLogFormatter.build_log_format(STANDARD_LOG_FORMAT_PARTS))
9487
+ formatter = StandardLoggingFormatter(StandardLoggingFormatter.build_log_format(STANDARD_LOG_FORMAT_PARTS))
9487
9488
  handler.setFormatter(formatter)
9488
9489
 
9489
9490
  #
9490
9491
 
9491
- handler.addFilter(TidLogFilter())
9492
+ handler.addFilter(TidLoggingFilter())
9492
9493
 
9493
9494
  #
9494
9495
 
@@ -9501,7 +9502,7 @@ def configure_standard_logging(
9501
9502
 
9502
9503
  #
9503
9504
 
9504
- return StandardConfiguredLogHandler(handler)
9505
+ return StandardConfiguredLoggingHandler(handler)
9505
9506
 
9506
9507
 
9507
9508
  ########################################
@@ -2742,13 +2742,13 @@ def typing_annotations_attr() -> str:
2742
2742
 
2743
2743
 
2744
2744
  ########################################
2745
- # ../../../omlish/logs/filters.py
2745
+ # ../../../omlish/logs/std/filters.py
2746
2746
 
2747
2747
 
2748
2748
  ##
2749
2749
 
2750
2750
 
2751
- class TidLogFilter(logging.Filter):
2751
+ class TidLoggingFilter(logging.Filter):
2752
2752
  def filter(self, record):
2753
2753
  # FIXME: handle better - missing from wasm and cosmos
2754
2754
  if hasattr(threading, 'get_native_id'):
@@ -2759,13 +2759,13 @@ class TidLogFilter(logging.Filter):
2759
2759
 
2760
2760
 
2761
2761
  ########################################
2762
- # ../../../omlish/logs/proxy.py
2762
+ # ../../../omlish/logs/std/proxy.py
2763
2763
 
2764
2764
 
2765
2765
  ##
2766
2766
 
2767
2767
 
2768
- class ProxyLogFilterer(logging.Filterer):
2768
+ class ProxyLoggingFilterer(logging.Filterer):
2769
2769
  def __init__(self, underlying: logging.Filterer) -> None: # noqa
2770
2770
  self._underlying = underlying
2771
2771
 
@@ -2791,9 +2791,9 @@ class ProxyLogFilterer(logging.Filterer):
2791
2791
  return self._underlying.filter(record)
2792
2792
 
2793
2793
 
2794
- class ProxyLogHandler(ProxyLogFilterer, logging.Handler):
2794
+ class ProxyLoggingHandler(ProxyLoggingFilterer, logging.Handler):
2795
2795
  def __init__(self, underlying: logging.Handler) -> None: # noqa
2796
- ProxyLogFilterer.__init__(self, underlying)
2796
+ ProxyLoggingFilterer.__init__(self, underlying)
2797
2797
 
2798
2798
  _underlying: logging.Handler
2799
2799
 
@@ -5726,7 +5726,7 @@ def check_lite_runtime_version() -> None:
5726
5726
 
5727
5727
 
5728
5728
  ########################################
5729
- # ../../../omlish/logs/json.py
5729
+ # ../../../omlish/logs/std/json.py
5730
5730
  """
5731
5731
  TODO:
5732
5732
  - translate json keys
@@ -5736,7 +5736,7 @@ TODO:
5736
5736
  ##
5737
5737
 
5738
5738
 
5739
- class JsonLogFormatter(logging.Formatter):
5739
+ class JsonLoggingFormatter(logging.Formatter):
5740
5740
  KEYS: ta.Mapping[str, bool] = {
5741
5741
  'name': False,
5742
5742
  'msg': False,
@@ -5855,7 +5855,7 @@ SD_LOG_LEVEL_MAP: ta.Mapping[int, int] = {
5855
5855
  }
5856
5856
 
5857
5857
 
5858
- class JournaldLogHandler(logging.Handler):
5858
+ class JournaldLoggingHandler(logging.Handler):
5859
5859
  """
5860
5860
  TODO:
5861
5861
  - fallback handler for when this barfs
@@ -5924,7 +5924,7 @@ class JournaldLogHandler(logging.Handler):
5924
5924
  self.handleError(record)
5925
5925
 
5926
5926
 
5927
- def journald_log_handler_factory(
5927
+ def journald_logging_handler_factory(
5928
5928
  *,
5929
5929
  no_tty_check: bool = False,
5930
5930
  no_fallback: bool = False,
@@ -5934,7 +5934,7 @@ def journald_log_handler_factory(
5934
5934
  (no_tty_check or not sys.stderr.isatty()) and
5935
5935
  (no_fallback or sd_try_libsystemd() is not None)
5936
5936
  ):
5937
- return JournaldLogHandler()
5937
+ return JournaldLoggingHandler()
5938
5938
 
5939
5939
  return logging.StreamHandler()
5940
5940
 
@@ -7735,6 +7735,7 @@ inj = InjectionApi()
7735
7735
  # ../../../omlish/logs/standard.py
7736
7736
  """
7737
7737
  TODO:
7738
+ - !! move to std !!
7738
7739
  - structured
7739
7740
  - prefixed
7740
7741
  - debug
@@ -7756,7 +7757,7 @@ STANDARD_LOG_FORMAT_PARTS = [
7756
7757
  ]
7757
7758
 
7758
7759
 
7759
- class StandardLogFormatter(logging.Formatter):
7760
+ class StandardLoggingFormatter(logging.Formatter):
7760
7761
  @staticmethod
7761
7762
  def build_log_format(parts: ta.Iterable[ta.Tuple[str, str]]) -> str:
7762
7763
  return ' '.join(v for k, v in parts)
@@ -7775,7 +7776,7 @@ class StandardLogFormatter(logging.Formatter):
7775
7776
  ##
7776
7777
 
7777
7778
 
7778
- class StandardConfiguredLogHandler(ProxyLogHandler):
7779
+ class StandardConfiguredLoggingHandler(ProxyLoggingHandler):
7779
7780
  def __init_subclass__(cls, **kwargs):
7780
7781
  raise TypeError('This class serves only as a marker and should not be subclassed.')
7781
7782
 
@@ -7808,7 +7809,7 @@ def configure_standard_logging(
7808
7809
  target: ta.Optional[logging.Logger] = None,
7809
7810
  force: bool = False,
7810
7811
  handler_factory: ta.Optional[ta.Callable[[], logging.Handler]] = None,
7811
- ) -> ta.Optional[StandardConfiguredLogHandler]:
7812
+ ) -> ta.Optional[StandardConfiguredLoggingHandler]:
7812
7813
  with _locking_logging_module_lock():
7813
7814
  if target is None:
7814
7815
  target = logging.root
@@ -7816,7 +7817,7 @@ def configure_standard_logging(
7816
7817
  #
7817
7818
 
7818
7819
  if not force:
7819
- if any(isinstance(h, StandardConfiguredLogHandler) for h in list(target.handlers)):
7820
+ if any(isinstance(h, StandardConfiguredLoggingHandler) for h in list(target.handlers)):
7820
7821
  return None
7821
7822
 
7822
7823
  #
@@ -7830,14 +7831,14 @@ def configure_standard_logging(
7830
7831
 
7831
7832
  formatter: logging.Formatter
7832
7833
  if json:
7833
- formatter = JsonLogFormatter()
7834
+ formatter = JsonLoggingFormatter()
7834
7835
  else:
7835
- formatter = StandardLogFormatter(StandardLogFormatter.build_log_format(STANDARD_LOG_FORMAT_PARTS))
7836
+ formatter = StandardLoggingFormatter(StandardLoggingFormatter.build_log_format(STANDARD_LOG_FORMAT_PARTS))
7836
7837
  handler.setFormatter(formatter)
7837
7838
 
7838
7839
  #
7839
7840
 
7840
- handler.addFilter(TidLogFilter())
7841
+ handler.addFilter(TidLoggingFilter())
7841
7842
 
7842
7843
  #
7843
7844
 
@@ -7850,7 +7851,7 @@ def configure_standard_logging(
7850
7851
 
7851
7852
  #
7852
7853
 
7853
- return StandardConfiguredLogHandler(handler)
7854
+ return StandardConfiguredLoggingHandler(handler)
7854
7855
 
7855
7856
 
7856
7857
  ########################################
@@ -11023,7 +11024,7 @@ def main(
11023
11024
  if not no_logging:
11024
11025
  configure_standard_logging(
11025
11026
  'INFO',
11026
- handler_factory=journald_log_handler_factory if not (args.no_journald or is_debugger_attached()) else None,
11027
+ handler_factory=journald_logging_handler_factory if not (args.no_journald or is_debugger_attached()) else None, # noqa
11027
11028
  )
11028
11029
 
11029
11030
  #
@@ -42,7 +42,7 @@ from omlish.lite.configs import load_config_file_obj
42
42
  from omlish.lite.inject import inj
43
43
  from omlish.lite.runtime import is_debugger_attached
44
44
  from omlish.logs.standard import configure_standard_logging
45
- from omlish.os.journald import journald_log_handler_factory
45
+ from omlish.os.journald import journald_logging_handler_factory
46
46
 
47
47
  from .configs import ServerConfig
48
48
  from .configs import prepare_server_config
@@ -83,7 +83,7 @@ def main(
83
83
  if not no_logging:
84
84
  configure_standard_logging(
85
85
  'INFO',
86
- handler_factory=journald_log_handler_factory if not (args.no_journald or is_debugger_attached()) else None,
86
+ handler_factory=journald_logging_handler_factory if not (args.no_journald or is_debugger_attached()) else None, # noqa
87
87
  )
88
88
 
89
89
  #
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ominfra
3
- Version: 0.0.0.dev424
3
+ Version: 0.0.0.dev425
4
4
  Summary: ominfra
5
5
  Author: wrmsr
6
6
  License-Expression: BSD-3-Clause
@@ -14,8 +14,8 @@ Classifier: Programming Language :: Python :: 3.13
14
14
  Requires-Python: >=3.13
15
15
  Description-Content-Type: text/markdown
16
16
  License-File: LICENSE
17
- Requires-Dist: omdev==0.0.0.dev424
18
- Requires-Dist: omlish==0.0.0.dev424
17
+ Requires-Dist: omdev==0.0.0.dev425
18
+ Requires-Dist: omlish==0.0.0.dev425
19
19
  Provides-Extra: all
20
20
  Requires-Dist: paramiko~=4.0; extra == "all"
21
21
  Requires-Dist: asyncssh~=2.21; extra == "all"
@@ -1,4 +1,4 @@
1
- ominfra/.manifests.json,sha256=sN48-JQtCfdTxhbjsptBC3imaHlipvaKH9UT5KaYzHI,577
1
+ ominfra/.omlish-manifests.json,sha256=sN48-JQtCfdTxhbjsptBC3imaHlipvaKH9UT5KaYzHI,577
2
2
  ominfra/__about__.py,sha256=vHKd5RbDqb9vdcETBCcWeMkYqMNfJMdY_yFxtT3Hglw,705
3
3
  ominfra/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  ominfra/pyremote.py,sha256=hCoh0m-yxAoHOTB_tG8nwqq_CEXxIF0MTZ0A5eaZcSM,16529
@@ -30,7 +30,7 @@ ominfra/clouds/aws/models/gen/__main__.py,sha256=Jsrv3P7LX2Cg08W7ByZfZ1JQT4lgLDP
30
30
  ominfra/clouds/aws/models/gen/cli.py,sha256=vcI8_-BOv4f-s_TFAqvnyzvBexZ_9y5akiUEGfioCqA,3857
31
31
  ominfra/clouds/aws/models/gen/gen.py,sha256=4pftOlyEIxDDoe73c5Z7NaJ1uhFsTBnMwmS1nlDiLOE,15903
32
32
  ominfra/clouds/aws/models/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
- ominfra/clouds/aws/models/services/ec2.py,sha256=X98QUSf9ds7K_uUcvIvXcmcwUYqhYw95xXETDq-hIAE,280095
33
+ ominfra/clouds/aws/models/services/ec2.py,sha256=xZx6gSu9rvwVjyjMHtvv4DHubZ2XpBnVAD3YI9SHLQE,281209
34
34
  ominfra/clouds/aws/models/services/lambda_.py,sha256=dp2I4ZVDb6Dci15XcjPPURUElyzH8cwhM911J_HM7Qo,25823
35
35
  ominfra/clouds/aws/models/services/rds.py,sha256=ziHgTwFZwl2FnyOyZMg3yJT_29-e0Z4RXBtWUaFfRr4,60108
36
36
  ominfra/clouds/aws/models/services/s3.py,sha256=aWbl4YtAiQyBfcNgerNxfWBIHZsbpFlT66JdRBYnQ9c,51426
@@ -112,9 +112,9 @@ ominfra/manage/targets/connection.py,sha256=mOHCsDVG-DZBhl3Mb7TTr1vhPb0gxDOOMW1x
112
112
  ominfra/manage/targets/inject.py,sha256=3M4wBkxtvymq_yhiotHlTN8iydELMjVCndyp9Bq-4eo,1572
113
113
  ominfra/manage/targets/targets.py,sha256=LjSQrDsHEjEQMDHcxtNKmLjy0YGLXJRGPFdUjazzFIM,1918
114
114
  ominfra/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
- ominfra/scripts/journald2aws.py,sha256=80xCMPV4b5FBfqUGcJHRVgJhD0g3jTJnkWMyRjOF0bk,182585
116
- ominfra/scripts/manage.py,sha256=PH83ehCZR_Uh26IAtXvcHvUGTqPZNKFrKd90o5gO9kU,405439
117
- ominfra/scripts/supervisor.py,sha256=fvEBANHEKcFO3F5CTjCdgLXhxFsPvXvgLMhW8Sd68BE,315127
115
+ ominfra/scripts/journald2aws.py,sha256=kMWF-WAeNVXpvsjMu-nuuptP2XCmgrQ51dxrMpf0FFY,182682
116
+ ominfra/scripts/manage.py,sha256=7GyNiv3etGa8rRpeF8xnMPlodX1dpqOHNDt0T198A7o,405536
117
+ ominfra/scripts/supervisor.py,sha256=z5cKHeDNprC65ORZtGMfK2Etzi27YDSg-4Pl02LwJJY,315248
118
118
  ominfra/supervisor/LICENSE.txt,sha256=ZrHY15PVR98y26Yg6iQfa-SXnUaYTDhrUsPVcEO5OKM,1874
119
119
  ominfra/supervisor/__init__.py,sha256=Y3l4WY4JRi2uLG6kgbGp93fuGfkxkKwZDvhsa0Rwgtk,15
120
120
  ominfra/supervisor/__main__.py,sha256=I0yFw-C08OOiZ3BF6lF1Oiv789EQXu-_j6whDhQUTEA,66
@@ -128,7 +128,7 @@ ominfra/supervisor/groupsimpl.py,sha256=3Y64j-UuuwX-0kCgUvNzct01oDHUU4Bc5aMYr8Tp
128
128
  ominfra/supervisor/http.py,sha256=T1XKDu6viNqEYrj87eDzN5ubMyttUlxZ9MX6HxIcsZM,3462
129
129
  ominfra/supervisor/inject.py,sha256=5yCj3VBcj7ke3ZdU6WZCJ2jPOHAXLJw9anvix013vPw,4842
130
130
  ominfra/supervisor/io.py,sha256=9xN_2bPf2XLOaIRbyi2Dng2yz4L0aEfUqPAPbm5ZXc4,3204
131
- ominfra/supervisor/main.py,sha256=IjWvVm9_MBJ5lJkgjlv6Ts5647M5zMTt5A3yMonHEFI,4394
131
+ ominfra/supervisor/main.py,sha256=aPCBKVlkAxOeJWAacM381dJHoR-r2eDhWSgACc4Ezmc,4410
132
132
  ominfra/supervisor/pipes.py,sha256=LtlbmIra0KhFScp-ODalaw6U5Um2iJS2ROl6W8YNgGc,2242
133
133
  ominfra/supervisor/privileges.py,sha256=m5tsuhqy8hBI0G-wxtjztussOP2GQyxi7xlT4TDYT4Q,2065
134
134
  ominfra/supervisor/process.py,sha256=rTHh4gA0Mqko1YIPn56N_tAlCLHHHzHYIUKoecDHsds,223
@@ -156,9 +156,9 @@ ominfra/tailscale/api.py,sha256=XASv9C_CWI-u-yX5jVzhJrkJhlwQRkYQWQQG1uJwAd8,1375
156
156
  ominfra/tailscale/cli.py,sha256=zRV7-tKB7kBah1oTVZlol-vwx1FBlnfzYAPGkeU5jX4,3543
157
157
  ominfra/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
158
158
  ominfra/tools/listresources.py,sha256=ePmo7cUAiBZARkM_3K4GKYZXxV73An_aioS1m-AAJis,6181
159
- ominfra-0.0.0.dev424.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
160
- ominfra-0.0.0.dev424.dist-info/METADATA,sha256=TUNuSl4UlqtUIvc74j4MksUPnspfVNfJ0ddtwcCXSn0,2377
161
- ominfra-0.0.0.dev424.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
162
- ominfra-0.0.0.dev424.dist-info/entry_points.txt,sha256=kgecQ2MgGrM9qK744BoKS3tMesaC3yjLnl9pa5CRczg,37
163
- ominfra-0.0.0.dev424.dist-info/top_level.txt,sha256=E-b2OHkk_AOBLXHYZQ2EOFKl-_6uOGd8EjeG-Zy6h_w,8
164
- ominfra-0.0.0.dev424.dist-info/RECORD,,
159
+ ominfra-0.0.0.dev425.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
160
+ ominfra-0.0.0.dev425.dist-info/METADATA,sha256=kO1vguf1rSjpZTYAhJH2gJyPwEm0cC-b5FIniuE1m3Q,2377
161
+ ominfra-0.0.0.dev425.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
162
+ ominfra-0.0.0.dev425.dist-info/entry_points.txt,sha256=kgecQ2MgGrM9qK744BoKS3tMesaC3yjLnl9pa5CRczg,37
163
+ ominfra-0.0.0.dev425.dist-info/top_level.txt,sha256=E-b2OHkk_AOBLXHYZQ2EOFKl-_6uOGd8EjeG-Zy6h_w,8
164
+ ominfra-0.0.0.dev425.dist-info/RECORD,,
File without changes