ominfra 0.0.0.dev148__py3-none-any.whl → 0.0.0.dev149__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.
- ominfra/clouds/aws/cli.py +1 -1
- ominfra/journald/messages.py +1 -1
- ominfra/manage/deploy/paths.py +2 -2
- ominfra/scripts/journald2aws.py +68 -63
- ominfra/scripts/manage.py +6 -1
- ominfra/scripts/supervisor.py +491 -486
- ominfra/supervisor/dispatchers.py +1 -1
- ominfra/supervisor/http.py +2 -2
- ominfra/supervisor/inject.py +4 -4
- ominfra/supervisor/io.py +1 -1
- ominfra/supervisor/spawningimpl.py +1 -1
- ominfra/supervisor/supervisor.py +1 -1
- ominfra/supervisor/types.py +1 -1
- ominfra/tailscale/cli.py +1 -1
- {ominfra-0.0.0.dev148.dist-info → ominfra-0.0.0.dev149.dist-info}/METADATA +3 -3
- {ominfra-0.0.0.dev148.dist-info → ominfra-0.0.0.dev149.dist-info}/RECORD +20 -20
- {ominfra-0.0.0.dev148.dist-info → ominfra-0.0.0.dev149.dist-info}/LICENSE +0 -0
- {ominfra-0.0.0.dev148.dist-info → ominfra-0.0.0.dev149.dist-info}/WHEEL +0 -0
- {ominfra-0.0.0.dev148.dist-info → ominfra-0.0.0.dev149.dist-info}/entry_points.txt +0 -0
- {ominfra-0.0.0.dev148.dist-info → ominfra-0.0.0.dev149.dist-info}/top_level.txt +0 -0
ominfra/supervisor/http.py
CHANGED
@@ -4,10 +4,10 @@ import json
|
|
4
4
|
import socket
|
5
5
|
import typing as ta
|
6
6
|
|
7
|
+
from omlish.io.fdio.corohttp import CoroHttpServerConnectionFdioHandler
|
8
|
+
from omlish.io.fdio.handlers import SocketFdioHandler
|
7
9
|
from omlish.lite.check import check_not_none
|
8
10
|
from omlish.lite.contextmanagers import defer
|
9
|
-
from omlish.lite.fdio.corohttp import CoroHttpServerConnectionFdioHandler
|
10
|
-
from omlish.lite.fdio.handlers import SocketFdioHandler
|
11
11
|
from omlish.lite.http.handlers import HttpHandler
|
12
12
|
from omlish.lite.http.handlers import HttpHandlerRequest
|
13
13
|
from omlish.lite.http.handlers import HttpHandlerResponse
|
ominfra/supervisor/inject.py
CHANGED
@@ -3,10 +3,10 @@ import contextlib
|
|
3
3
|
import dataclasses as dc
|
4
4
|
import typing as ta
|
5
5
|
|
6
|
-
from omlish.
|
7
|
-
from omlish.
|
8
|
-
from omlish.
|
9
|
-
from omlish.
|
6
|
+
from omlish.io.fdio.kqueue import KqueueFdioPoller # noqa
|
7
|
+
from omlish.io.fdio.pollers import FdioPoller
|
8
|
+
from omlish.io.fdio.pollers import PollFdioPoller # noqa
|
9
|
+
from omlish.io.fdio.pollers import SelectFdioPoller
|
10
10
|
from omlish.lite.inject import InjectorBindingOrBindings
|
11
11
|
from omlish.lite.inject import InjectorBindings
|
12
12
|
from omlish.lite.inject import inj
|
ominfra/supervisor/io.py
CHANGED
@@ -5,9 +5,9 @@ import shlex
|
|
5
5
|
import stat
|
6
6
|
import typing as ta
|
7
7
|
|
8
|
+
from omlish.io.fdio.handlers import FdioHandler
|
8
9
|
from omlish.lite.check import check_isinstance
|
9
10
|
from omlish.lite.check import check_not_none
|
10
|
-
from omlish.lite.fdio.handlers import FdioHandler
|
11
11
|
from omlish.lite.typing import Func3
|
12
12
|
|
13
13
|
from .configs import ProcessConfig
|
ominfra/supervisor/supervisor.py
CHANGED
@@ -4,8 +4,8 @@ import os
|
|
4
4
|
import time
|
5
5
|
import typing as ta
|
6
6
|
|
7
|
+
from omlish.io.fdio.pollers import FdioPoller
|
7
8
|
from omlish.lite.check import check_isinstance
|
8
|
-
from omlish.lite.fdio.pollers import FdioPoller
|
9
9
|
from omlish.lite.logs import log
|
10
10
|
from omlish.lite.typing import Func1
|
11
11
|
|
ominfra/supervisor/types.py
CHANGED
ominfra/tailscale/cli.py
CHANGED
@@ -4,13 +4,13 @@ import sys
|
|
4
4
|
import typing as ta
|
5
5
|
|
6
6
|
from omdev.cli import CliModule
|
7
|
-
from omlish import argparse as ap
|
8
7
|
from omlish import cached
|
9
8
|
from omlish import check
|
10
9
|
from omlish import collections as col
|
11
10
|
from omlish import dataclasses as dc
|
12
11
|
from omlish import lang
|
13
12
|
from omlish import marshal as msh
|
13
|
+
from omlish.argparse import all as ap
|
14
14
|
from omlish.formats import json
|
15
15
|
|
16
16
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ominfra
|
3
|
-
Version: 0.0.0.
|
3
|
+
Version: 0.0.0.dev149
|
4
4
|
Summary: ominfra
|
5
5
|
Author: wrmsr
|
6
6
|
License: BSD-3-Clause
|
@@ -12,8 +12,8 @@ Classifier: Operating System :: OS Independent
|
|
12
12
|
Classifier: Operating System :: POSIX
|
13
13
|
Requires-Python: >=3.12
|
14
14
|
License-File: LICENSE
|
15
|
-
Requires-Dist: omdev==0.0.0.
|
16
|
-
Requires-Dist: omlish==0.0.0.
|
15
|
+
Requires-Dist: omdev==0.0.0.dev149
|
16
|
+
Requires-Dist: omlish==0.0.0.dev149
|
17
17
|
Provides-Extra: all
|
18
18
|
Requires-Dist: paramiko~=3.5; extra == "all"
|
19
19
|
Requires-Dist: asyncssh~=2.18; extra == "all"
|
@@ -10,7 +10,7 @@ ominfra/clouds/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
10
|
ominfra/clouds/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
11
11
|
ominfra/clouds/aws/__main__.py,sha256=HXMoxEl9KHhv6zOOPQxiJAftfR2SjBqeVTYw-og9aFw,163
|
12
12
|
ominfra/clouds/aws/auth.py,sha256=qXS3X6Zl0FHqvfv1MNVYK1iy1TLbN0Md6S8N4Goq6kU,6204
|
13
|
-
ominfra/clouds/aws/cli.py,sha256=
|
13
|
+
ominfra/clouds/aws/cli.py,sha256=I2iumILzIt6VJ1hjDcTKJjVtOdzrZIv4w1EmCp_DoXM,514
|
14
14
|
ominfra/clouds/aws/dataclasses.py,sha256=rKhtJKJ0JhMssU9n9CABX_JaUiokIboEATJ9TZgZQ6A,3868
|
15
15
|
ominfra/clouds/aws/logs.py,sha256=z9ouU2IYXNHsl7_Whbjs1FGtlUwsEq0RV8LNrM_QNTE,5471
|
16
16
|
ominfra/clouds/aws/metadata.py,sha256=XR1BuMdQheyeFjjA3MN8GCNWVAp5ahoPdbWXEmViutQ,2767
|
@@ -25,7 +25,7 @@ ominfra/clouds/gcp/auth.py,sha256=3PyfRJNgajjMqJFem3SKui0CqGeHEsZlvbRhuxFcZG8,13
|
|
25
25
|
ominfra/journald/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
26
|
ominfra/journald/fields.py,sha256=NjjVn7GW4jkcGdyiiizVjEfQqSFnolXYk3kDcSQcMmc,12278
|
27
27
|
ominfra/journald/genmessages.py,sha256=rLTS-K2v7otNOtTz4RoOEVYCm0fQuuBzf47e0T61tA8,1857
|
28
|
-
ominfra/journald/messages.py,sha256=
|
28
|
+
ominfra/journald/messages.py,sha256=flzdoNNklHGyUA51ZYzJooP_Z0gQZ_6WpSjNlolbvm4,2195
|
29
29
|
ominfra/journald/tailer.py,sha256=5abcFMfgi7fnY9ZEQe2ZVobaJxjQkeu6d9Kagw33a1w,33525
|
30
30
|
ominfra/manage/__init__.py,sha256=aykrEASTHEtJ-o97jUHRIv8oea41tO7RDHB56cQfmis,265
|
31
31
|
ominfra/manage/__main__.py,sha256=5IeIERm-371fSI5ZvPv8eldAJBwgKwpR0R49pTsILNM,76
|
@@ -45,7 +45,7 @@ ominfra/manage/commands/subprocess.py,sha256=8-TU5Vuy0ZwymKV0yDgbeLy87ceI3JTK9-2
|
|
45
45
|
ominfra/manage/deploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
46
46
|
ominfra/manage/deploy/command.py,sha256=CBzsw31u86wxkY9Ms-Es70ijD_3naZLAcj3Gb6OfGeQ,565
|
47
47
|
ominfra/manage/deploy/inject.py,sha256=j5LYK5y_nZgdaNLde8sV2w_---GvmibgO_ZBT8qzeFM,499
|
48
|
-
ominfra/manage/deploy/paths.py,sha256=
|
48
|
+
ominfra/manage/deploy/paths.py,sha256=ZjxDgJLzQscYFQ1eNNxM2QnKzNdZSkPEkMaXH5ryGBc,3848
|
49
49
|
ominfra/manage/remote/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
50
50
|
ominfra/manage/remote/_main.py,sha256=Cg312nrFOsqNBXmrwxNl07SRyqr1ZsSHYyZBITJzFrU,4408
|
51
51
|
ominfra/manage/remote/channel.py,sha256=36xR9Ti9ZA8TUBtxmY0u7_3Lv7E6wzQTxlZl7gLR5GE,2224
|
@@ -56,22 +56,22 @@ ominfra/manage/remote/inject.py,sha256=euI9YmLTmNw7tdkQq_5PtFg6n9pYz3mGukOOApdYw
|
|
56
56
|
ominfra/manage/remote/payload.py,sha256=Rn-Yo26POpHEOOfUHX3jWkqcQVEAvkJ_5Bu13jwoob4,944
|
57
57
|
ominfra/manage/remote/spawning.py,sha256=xE-as45fCtu3W1q-X6ktYesksdY_uGSQo7gGHX3DxCQ,3214
|
58
58
|
ominfra/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
59
|
-
ominfra/scripts/journald2aws.py,sha256=
|
60
|
-
ominfra/scripts/manage.py,sha256=
|
61
|
-
ominfra/scripts/supervisor.py,sha256=
|
59
|
+
ominfra/scripts/journald2aws.py,sha256=OvdaaevPgv2c3KiSpYdRIWkh4wQTbLQqUxa4RcohxnE,138454
|
60
|
+
ominfra/scripts/manage.py,sha256=OGOBpV2Hjq3aiBYq7BIlheumv3LeRr1XfMOwSH4qtFE,176239
|
61
|
+
ominfra/scripts/supervisor.py,sha256=T6SEGdOZ9G8qT2uVU_naXTpKp4dUZVRJpu07RSysRSE,251257
|
62
62
|
ominfra/supervisor/LICENSE.txt,sha256=yvqaMNsDhWxziHa9ien6qCW1SkZv-DQlAg96XjfSee8,1746
|
63
63
|
ominfra/supervisor/__init__.py,sha256=Y3l4WY4JRi2uLG6kgbGp93fuGfkxkKwZDvhsa0Rwgtk,15
|
64
64
|
ominfra/supervisor/__main__.py,sha256=I0yFw-C08OOiZ3BF6lF1Oiv789EQXu-_j6whDhQUTEA,66
|
65
65
|
ominfra/supervisor/configs.py,sha256=OPtiL5_SjBYQ9xDqMgZvjoXgpleTxv4d3C4fD1X2Dz0,3966
|
66
|
-
ominfra/supervisor/dispatchers.py,sha256=
|
66
|
+
ominfra/supervisor/dispatchers.py,sha256=zXLwQS4Vc6dWw5o9QOL04UMDt7w6CKu9wf19CjUiS2Q,1005
|
67
67
|
ominfra/supervisor/dispatchersimpl.py,sha256=q3dEyOHWTPKm28nmAGisjgIW1BX6O3-SzbYa7nWuTEs,11349
|
68
68
|
ominfra/supervisor/events.py,sha256=XGrtzHr1xm0dwjz329fn9eR0_Ap-LQL6Sk8LJ8eVDEo,6692
|
69
69
|
ominfra/supervisor/exceptions.py,sha256=Qbu211H3CLlSmi9LsSikOwrcL5HgJP9ugvcKWlGTAoI,750
|
70
70
|
ominfra/supervisor/groups.py,sha256=MBbsbt8Zh_WEYkGOr1KXa82gnPVw9wPB2lAnqhugXSc,2457
|
71
71
|
ominfra/supervisor/groupsimpl.py,sha256=nIrW4SmB0W6c2jOR_HhkfVcH4eHyLZnG1FJ0MCzc6mQ,2292
|
72
|
-
ominfra/supervisor/http.py,sha256=
|
73
|
-
ominfra/supervisor/inject.py,sha256=
|
74
|
-
ominfra/supervisor/io.py,sha256=
|
72
|
+
ominfra/supervisor/http.py,sha256=QLDjPKnknD10ucAr6GODXXTJKM2WnF6GcGGkpIEeKqg,3469
|
73
|
+
ominfra/supervisor/inject.py,sha256=6nBEnpE8VLjtYK12z5DGRP7WzgbwLAz5yf__1KnJl6g,4693
|
74
|
+
ominfra/supervisor/io.py,sha256=moaGNaPuYXEAUzLg8Qjo05DEIcOUNYUj8SSr8eT0d24,3198
|
75
75
|
ominfra/supervisor/main.py,sha256=oqaWOcnHJgaxNhjyphPgjaNjHPjDcx7kzYMjtZpwSxE,4253
|
76
76
|
ominfra/supervisor/pipes.py,sha256=2ZihNTnRNjnIPOtPbm3_pyqO15f7BNs7WnNtO5V8ahM,2231
|
77
77
|
ominfra/supervisor/privileges.py,sha256=kaRTHI7XjqzxEWCeHp3_0J0Vc4gSPugRbXEwxuw6MYE,2054
|
@@ -81,10 +81,10 @@ ominfra/supervisor/setup.py,sha256=7HwwwI-WT_Z0WjZ9_l5Orr4K298nKKhQ1f_ZgGsi9TU,6
|
|
81
81
|
ominfra/supervisor/setupimpl.py,sha256=88h3oYsdJ0LAo7sZZZGRQti14oQay3b-0Vd_h3Cl108,9638
|
82
82
|
ominfra/supervisor/signals.py,sha256=jY52naUifcAjd6nICTP1ZW3IQSPsHB4cvbsJo8_QV_U,2196
|
83
83
|
ominfra/supervisor/spawning.py,sha256=i1k3tmqWyU-KIN7kel-JVxTVGnLiTIVmZzlstJSZpjM,622
|
84
|
-
ominfra/supervisor/spawningimpl.py,sha256=
|
84
|
+
ominfra/supervisor/spawningimpl.py,sha256=5U6JFhN_UlFPF0yQeRJu-0GCyusK1AeDLhiDmAWWrJI,11160
|
85
85
|
ominfra/supervisor/states.py,sha256=x1trJQbItkSegOmotpn5YNcZMLbBL8I3GmhvFCQl4Oo,1400
|
86
|
-
ominfra/supervisor/supervisor.py,sha256=
|
87
|
-
ominfra/supervisor/types.py,sha256=
|
86
|
+
ominfra/supervisor/supervisor.py,sha256=hdwg_X96UbiEq3HoHtgbKtFKtw9eZbxf-8XDyHRT7EA,9340
|
87
|
+
ominfra/supervisor/types.py,sha256=g6C-NuPWMy7pk-kcnT3mO7auLWElZU_4dhzrUaX--TA,4015
|
88
88
|
ominfra/supervisor/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
89
89
|
ominfra/supervisor/utils/collections.py,sha256=vcfmVYS4QngMdtEI1DvdRIcubmy55Wj40NCzW27_rIY,1361
|
90
90
|
ominfra/supervisor/utils/diag.py,sha256=ujz4gkW7p3wmbaKFM8Hz5eHEwpoUkbB8JeDvcHilCz0,705
|
@@ -97,12 +97,12 @@ ominfra/supervisor/utils/strings.py,sha256=gZOYiFI3ZQEMrXq6VlK2WadK12JPO6zYjPenq
|
|
97
97
|
ominfra/supervisor/utils/users.py,sha256=PRUhWy74WQCxix4BLNYcWW1i2mF1IyAxj1RzElnP4iM,1345
|
98
98
|
ominfra/tailscale/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
99
99
|
ominfra/tailscale/api.py,sha256=C5-t_b6jZXUWcy5k8bXm7CFnk73pSdrlMOgGDeGVrpw,1370
|
100
|
-
ominfra/tailscale/cli.py,sha256=
|
100
|
+
ominfra/tailscale/cli.py,sha256=h6akQJMl0KuWLHS7Ur6WcBZ2JwF0DJQhsPTnFBdGyNk,3571
|
101
101
|
ominfra/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
102
102
|
ominfra/tools/listresources.py,sha256=4qVg5txsb10EHhvqXXeM6gJ2jx9LbroEnPydDv1uXs0,6176
|
103
|
-
ominfra-0.0.0.
|
104
|
-
ominfra-0.0.0.
|
105
|
-
ominfra-0.0.0.
|
106
|
-
ominfra-0.0.0.
|
107
|
-
ominfra-0.0.0.
|
108
|
-
ominfra-0.0.0.
|
103
|
+
ominfra-0.0.0.dev149.dist-info/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
104
|
+
ominfra-0.0.0.dev149.dist-info/METADATA,sha256=uh9EEO0TFeM04yG9HAaeWp3XocW0movSYsHdgL3tZQg,731
|
105
|
+
ominfra-0.0.0.dev149.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
106
|
+
ominfra-0.0.0.dev149.dist-info/entry_points.txt,sha256=kgecQ2MgGrM9qK744BoKS3tMesaC3yjLnl9pa5CRczg,37
|
107
|
+
ominfra-0.0.0.dev149.dist-info/top_level.txt,sha256=E-b2OHkk_AOBLXHYZQ2EOFKl-_6uOGd8EjeG-Zy6h_w,8
|
108
|
+
ominfra-0.0.0.dev149.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|