machineconfig 6.25__py3-none-any.whl → 6.26__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.
Potentially problematic release.
This version of machineconfig might be problematic. Click here for more details.
- machineconfig/cluster/sessions_managers/utils/load_balancer.py +1 -1
- machineconfig/cluster/sessions_managers/utils/maker.py +48 -0
- machineconfig/cluster/sessions_managers/zellij_local.py +3 -3
- machineconfig/cluster/sessions_managers/zellij_local_manager.py +2 -2
- machineconfig/cluster/sessions_managers/{helpers → zellij_utils}/zellij_local_helper_with_panes.py +1 -1
- machineconfig/scripts/python/croshell.py +1 -1
- machineconfig/scripts/python/devops_helpers/cli_config.py +1 -1
- machineconfig/scripts/python/devops_helpers/cli_self.py +3 -3
- machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py +2 -2
- machineconfig/scripts/python/interactive.py +2 -2
- machineconfig/scripts/python/nw/mount_nfs +1 -1
- machineconfig/scripts/python/repos_helpers/count_lines_frontend.py +1 -1
- machineconfig/scripts/windows/mounts/mount_ssh.ps1 +1 -1
- machineconfig/setup_linux/web_shortcuts/interactive.sh +1 -1
- machineconfig/setup_windows/web_shortcuts/interactive.ps1 +1 -1
- machineconfig/utils/ssh.py +1 -1
- {machineconfig-6.25.dist-info → machineconfig-6.26.dist-info}/METADATA +1 -1
- {machineconfig-6.25.dist-info → machineconfig-6.26.dist-info}/RECORD +26 -25
- /machineconfig/cluster/sessions_managers/{utils → helpers}/enhanced_command_runner.py +0 -0
- /machineconfig/cluster/sessions_managers/{utils → helpers}/load_balancer_helper.py +0 -0
- /machineconfig/cluster/sessions_managers/{helpers → zellij_utils}/zellij_local_helper.py +0 -0
- /machineconfig/cluster/sessions_managers/{helpers → zellij_utils}/zellij_local_helper_restart.py +0 -0
- /machineconfig/cluster/sessions_managers/{helpers → zellij_utils}/zellij_local_manager_helper.py +0 -0
- {machineconfig-6.25.dist-info → machineconfig-6.26.dist-info}/WHEEL +0 -0
- {machineconfig-6.25.dist-info → machineconfig-6.26.dist-info}/entry_points.txt +0 -0
- {machineconfig-6.25.dist-info → machineconfig-6.26.dist-info}/top_level.txt +0 -0
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
from machineconfig.utils.schemas.layouts.layout_types import TabConfig, LayoutConfig
|
|
3
3
|
# from machineconfig.utils.accessories import split_list
|
|
4
4
|
from typing import Literal, Protocol
|
|
5
|
-
from machineconfig.cluster.sessions_managers.
|
|
5
|
+
from machineconfig.cluster.sessions_managers.helpers.load_balancer_helper import restrict_num_tabs_helper1, restrict_num_tabs_helper2, restrict_num_tabs_helper3, restrict_num_tabs_helper4
|
|
6
6
|
|
|
7
7
|
class COMMAND_SPLITTER(Protocol):
|
|
8
8
|
def __call__(self, command: str, to: int) -> list[str]: ...
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
|
|
2
|
+
from types import FunctionType
|
|
3
|
+
from typing import Literal
|
|
4
|
+
from machineconfig.utils.schemas.layouts.layout_types import TabConfig, LayoutConfig
|
|
5
|
+
from pathlib import Path
|
|
6
|
+
|
|
7
|
+
def get_fire_command_and_artifact_files(func: FunctionType):
|
|
8
|
+
from machineconfig.utils.meta import function_to_script
|
|
9
|
+
py_script = function_to_script(func)
|
|
10
|
+
from pathlib import Path
|
|
11
|
+
from machineconfig.utils.accessories import randstr
|
|
12
|
+
py_script_path = Path.home().joinpath("tmp_results", "tmp_py_scripts", f"tmp_{randstr(10)}.py")
|
|
13
|
+
py_script_path.parent.mkdir(parents=True, exist_ok=True)
|
|
14
|
+
py_script_path.write_text(py_script, encoding="utf-8")
|
|
15
|
+
command_to_run = f"uv run --project $HOME/code/bitsense {py_script_path}"
|
|
16
|
+
tab_config: TabConfig = {
|
|
17
|
+
"command": command_to_run,
|
|
18
|
+
"startDir": "$HOME",
|
|
19
|
+
"tabName": func.__name__
|
|
20
|
+
}
|
|
21
|
+
return tab_config, py_script_path
|
|
22
|
+
def get_fire_command_and_artifact_files_v2(func: FunctionType):
|
|
23
|
+
command_to_run = f"fire {func.__module__}.{func.__name__}"
|
|
24
|
+
tab_config: TabConfig = {
|
|
25
|
+
"command": command_to_run,
|
|
26
|
+
"startDir": str(Path(func.__module__).parent),
|
|
27
|
+
"tabName": func.__name__
|
|
28
|
+
}
|
|
29
|
+
return tab_config
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
def make_layout_from_functions(functions: list[FunctionType], layout_name: str, method: Literal["script", "fire"]="fire") -> LayoutConfig:
|
|
33
|
+
tabs2artifacts: dict[TabConfig, list[Path]] = {}
|
|
34
|
+
for a_func in functions:
|
|
35
|
+
match method:
|
|
36
|
+
case "script":
|
|
37
|
+
tab_config, artifact_files_1 = get_fire_command_and_artifact_files(a_func)
|
|
38
|
+
artifact_files = [artifact_files_1]
|
|
39
|
+
case "fire":
|
|
40
|
+
tab_config = get_fire_command_and_artifact_files_v2(a_func)
|
|
41
|
+
artifact_files = []
|
|
42
|
+
tabs2artifacts[tab_config] = artifact_files
|
|
43
|
+
list_of_tabs = list(tabs2artifacts.keys())
|
|
44
|
+
layout_config: LayoutConfig = {
|
|
45
|
+
"layoutName": layout_name,
|
|
46
|
+
"layoutTabs": list_of_tabs,
|
|
47
|
+
}
|
|
48
|
+
return layout_config
|
|
@@ -7,8 +7,8 @@ from rich.console import Console
|
|
|
7
7
|
|
|
8
8
|
from machineconfig.utils.schemas.layouts.layout_types import LayoutConfig
|
|
9
9
|
from machineconfig.cluster.sessions_managers.zellij_utils.monitoring_types import ComprehensiveStatus, CommandStatus
|
|
10
|
-
from machineconfig.cluster.sessions_managers.
|
|
11
|
-
from machineconfig.cluster.sessions_managers.
|
|
10
|
+
from machineconfig.cluster.sessions_managers.zellij_utils.zellij_local_helper import validate_layout_config, create_tab_section, check_command_status, check_zellij_session_status
|
|
11
|
+
from machineconfig.cluster.sessions_managers.zellij_utils.zellij_local_helper_restart import restart_tab_process
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
logging.basicConfig(level=logging.INFO)
|
|
@@ -170,7 +170,7 @@ class ZellijLayoutGenerator:
|
|
|
170
170
|
return restart_tab_process(tab_name=tab_name, layout_config=self.layout_config, session_name=self.session_name)
|
|
171
171
|
|
|
172
172
|
def run(self):
|
|
173
|
-
from machineconfig.cluster.sessions_managers.
|
|
173
|
+
from machineconfig.cluster.sessions_managers.helpers.enhanced_command_runner import enhanced_zellij_session_start
|
|
174
174
|
enhanced_zellij_session_start(session_name=self.session_name, layout_path=str(self.layout_path))
|
|
175
175
|
|
|
176
176
|
|
|
@@ -11,7 +11,7 @@ from machineconfig.cluster.sessions_managers.zellij_utils.monitoring_types impor
|
|
|
11
11
|
from machineconfig.utils.scheduler import Scheduler
|
|
12
12
|
from machineconfig.cluster.sessions_managers.zellij_local import ZellijLayoutGenerator
|
|
13
13
|
from machineconfig.utils.schemas.layouts.layout_types import LayoutConfig
|
|
14
|
-
from machineconfig.cluster.sessions_managers.
|
|
14
|
+
from machineconfig.cluster.sessions_managers.zellij_utils import zellij_local_manager_helper as helper
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
logging.basicConfig(level=logging.INFO)
|
|
@@ -133,7 +133,7 @@ class ZellijLocalManager:
|
|
|
133
133
|
session_name = manager.session_name
|
|
134
134
|
|
|
135
135
|
# Get session status using the helper function
|
|
136
|
-
from machineconfig.cluster.sessions_managers.
|
|
136
|
+
from machineconfig.cluster.sessions_managers.zellij_utils.zellij_local_helper import check_zellij_session_status
|
|
137
137
|
session_status = check_zellij_session_status(session_name)
|
|
138
138
|
|
|
139
139
|
# Get commands status for this session
|
machineconfig/cluster/sessions_managers/{helpers → zellij_utils}/zellij_local_helper_with_panes.py
RENAMED
|
@@ -224,5 +224,5 @@ if __name__ == "__main__":
|
|
|
224
224
|
layout_path_3 = create_zellij_layout_with_panes(layout_config=sample_layout, output_path="/tmp/zellij_test_12345.kdl", panes_per_tab=3, split_direction="horizontal")
|
|
225
225
|
print(f"✅ Layout created: {layout_path_3}")
|
|
226
226
|
|
|
227
|
-
from machineconfig.cluster.sessions_managers.
|
|
227
|
+
from machineconfig.cluster.sessions_managers.helpers.enhanced_command_runner import enhanced_zellij_session_start
|
|
228
228
|
enhanced_zellij_session_start(session_name="tmp", layout_path=layout_path_3)
|
|
@@ -149,7 +149,7 @@ from pathlib import Path
|
|
|
149
149
|
else:
|
|
150
150
|
console.print(Panel("❌ Could not determine the local machineconfig repo root. Please ensure the `REPO_ROOT` in `source_of_truth.py` is correctly set to the local path of the machineconfig repo, or do not use the `--local` flag.", title="Error", border_style="red"))
|
|
151
151
|
return
|
|
152
|
-
else: ve_line = """--with "machineconfig[plot]>=
|
|
152
|
+
else: ve_line = """--with "machineconfig[plot]>=6.25" """
|
|
153
153
|
fire_line = f"uv run --python 3.14 {ve_line} {interpreter} {interactivity} {profile} {str(pyfile)}"
|
|
154
154
|
|
|
155
155
|
from machineconfig.utils.code import run_shell_script
|
|
@@ -42,7 +42,7 @@ def path():
|
|
|
42
42
|
from pathlib import Path
|
|
43
43
|
path = Path(navigator.__file__).resolve().parent.joinpath("path_manager_tui.py")
|
|
44
44
|
from machineconfig.utils.code import run_shell_script
|
|
45
|
-
run_shell_script(f"""uv run --with "machineconfig>=
|
|
45
|
+
run_shell_script(f"""uv run --with "machineconfig>=6.25,textual" {path}""")
|
|
46
46
|
|
|
47
47
|
def pwsh_theme():
|
|
48
48
|
"""🔗 Select powershell prompt theme."""
|
|
@@ -54,9 +54,9 @@ def install():
|
|
|
54
54
|
# main_public_from_parser()
|
|
55
55
|
import platform
|
|
56
56
|
if platform.system() == "Windows":
|
|
57
|
-
run_shell_script(r"""$HOME\.local\bin\uv.exe tool install machineconfig>=
|
|
57
|
+
run_shell_script(r"""$HOME\.local\bin\uv.exe tool install "machineconfig>=6.25" """)
|
|
58
58
|
else:
|
|
59
|
-
run_shell_script("""$HOME/.local/bin/uv tool install machineconfig>=
|
|
59
|
+
run_shell_script("""$HOME/.local/bin/uv tool install "machineconfig>=6.25" """)
|
|
60
60
|
|
|
61
61
|
def navigate():
|
|
62
62
|
"""📚 NAVIGATE command structure with TUI"""
|
|
@@ -64,7 +64,7 @@ def navigate():
|
|
|
64
64
|
from pathlib import Path
|
|
65
65
|
path = Path(navigator.__file__).resolve().parent.joinpath("devops_navigator.py")
|
|
66
66
|
from machineconfig.utils.code import run_shell_script
|
|
67
|
-
run_shell_script(f"""uv run --with "machineconfig>=
|
|
67
|
+
run_shell_script(f"""uv run --with "machineconfig>=6.25,textual" {path}""")
|
|
68
68
|
|
|
69
69
|
|
|
70
70
|
def run_python(ip: Annotated[str, typer.Argument(..., help="Python command to run in the machineconfig environment")],
|
|
@@ -101,7 +101,7 @@ git pull originEnc master
|
|
|
101
101
|
return "done"
|
|
102
102
|
from machineconfig.utils.meta import function_to_script
|
|
103
103
|
program_1_py = function_to_script(func=func2, call_with_args=None, call_with_kwargs={"remote_repo": str(repo_remote_root), "local_repo": str(repo_local_root), "cloud": cloud_resolved})
|
|
104
|
-
shell_file_1 = get_shell_file_executing_python_script(python_script=program_1_py, ve_path=None, executable="""uv run --with "machineconfig>=
|
|
104
|
+
shell_file_1 = get_shell_file_executing_python_script(python_script=program_1_py, ve_path=None, executable="""uv run --with "machineconfig>=6.25" """)
|
|
105
105
|
# ================================================================================
|
|
106
106
|
option2 = "Delete local repo and replace it with remote copy:"
|
|
107
107
|
program_2 = f"""
|
|
@@ -122,7 +122,7 @@ sudo chmod +x $HOME/dotfiles/scripts/linux -R
|
|
|
122
122
|
inspect_repos(repo_local_root=repo_local_root, repo_remote_root=repo_remote_root)
|
|
123
123
|
return "done"
|
|
124
124
|
program_3_py = function_to_script(func=func, call_with_args=None, call_with_kwargs={"repo_local_root": str(repo_local_root), "repo_remote_root": str(repo_remote_root)})
|
|
125
|
-
shell_file_3 = get_shell_file_executing_python_script(python_script=program_3_py, ve_path=None, executable="""uv run --with "machineconfig>=
|
|
125
|
+
shell_file_3 = get_shell_file_executing_python_script(python_script=program_3_py, ve_path=None, executable="""uv run --with "machineconfig>=6.25" """)
|
|
126
126
|
# ================================================================================
|
|
127
127
|
|
|
128
128
|
option4 = "Remove problematic rclone file from repo and replace with remote:"
|
|
@@ -130,9 +130,9 @@ def execute_installations(selected_options: list[str]) -> None:
|
|
|
130
130
|
console.print(Panel("🐍 [bold green]PYTHON ENVIRONMENT[/bold green]\n[italic]Virtual environment setup[/italic]", border_style="green"))
|
|
131
131
|
import platform
|
|
132
132
|
if platform.system() == "Windows":
|
|
133
|
-
run_shell_script(r"""$HOME\.local\bin\uv.exe tool install machineconfig>=
|
|
133
|
+
run_shell_script(r"""$HOME\.local\bin\uv.exe tool install "machineconfig>=6.25" """)
|
|
134
134
|
else:
|
|
135
|
-
run_shell_script("""$HOME/.local/bin/uv tool install machineconfig>=
|
|
135
|
+
run_shell_script("""$HOME/.local/bin/uv tool install "machineconfig>=6.25" """)
|
|
136
136
|
if "install_ssh_server" in selected_options:
|
|
137
137
|
console.print(Panel("🔒 [bold red]SSH SERVER[/bold red]\n[italic]Remote access setup[/italic]", border_style="red"))
|
|
138
138
|
import platform
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
# mkdir ~/data/local
|
|
6
6
|
# sudo mount -o nolock,noatime,nodiratime,proto=tcp,timeo=600,retrans=2,noac alex-p51s-5:/home/alex/data/local ./data/local
|
|
7
7
|
|
|
8
|
-
uv run --python 3.14 --with "machineconfig>=
|
|
8
|
+
uv run --python 3.14 --with "machineconfig>=6.25" python -m machineconfig.scripts.python.mount_nfs
|
|
9
9
|
# Check if remote server is reachable and share folder exists
|
|
10
10
|
if ! ping -c 1 "$remote_server" &> /dev/null; then
|
|
11
11
|
echo "💥 Error: Remote server $remote_server is not reachable."
|
|
@@ -8,7 +8,7 @@ def analyze_repo_development(repo_path: Annotated[str, typer.Argument(..., help=
|
|
|
8
8
|
from pathlib import Path
|
|
9
9
|
count_lines_path = Path(count_lines.__file__)
|
|
10
10
|
# --project $HOME/code/ machineconfig --group plot
|
|
11
|
-
cmd = f"""uv run --python 3.14 --with "machineconfig[plot]>=
|
|
11
|
+
cmd = f"""uv run --python 3.14 --with "machineconfig[plot]>=6.25" {count_lines_path} analyze-over-time {repo_path}"""
|
|
12
12
|
from machineconfig.utils.code import run_shell_script
|
|
13
13
|
run_shell_script(cmd)
|
|
14
14
|
|
|
@@ -7,7 +7,7 @@ $user = ''
|
|
|
7
7
|
$sharePath = ''
|
|
8
8
|
$driveLetter = ''
|
|
9
9
|
|
|
10
|
-
uv run --python 3.14 --with "machineconfig>=
|
|
10
|
+
uv run --python 3.14 --with "machineconfig>=6.25" python -m machineconfig.scripts.python.mount_ssh
|
|
11
11
|
|
|
12
12
|
net use T: \\sshfs.kr\$user@$host.local
|
|
13
13
|
# this worked: net use T: \\sshfs\alex@alex-p51s-5.local
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
2
|
. <( curl -sSL "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/uv.sh")
|
|
3
3
|
mcfg() {
|
|
4
|
-
"$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=
|
|
4
|
+
"$HOME/.local/bin/uv" run --python 3.14 --with "machineconfig>=6.25" mcfg "$@"
|
|
5
5
|
}
|
|
6
6
|
alias d="mcfg devops"
|
|
7
7
|
alias c="mcfg cloud"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
iex (iwr "https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/uv.ps1").Content
|
|
4
4
|
function mcfg {
|
|
5
|
-
& "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=
|
|
5
|
+
& "$HOME\.local\bin\uv.exe" run --python 3.14 --with "machineconfig>=6.25" mcfg $args
|
|
6
6
|
}
|
|
7
7
|
function d { mcfg devops @args }
|
|
8
8
|
function c { mcfg cloud @args }
|
machineconfig/utils/ssh.py
CHANGED
|
@@ -6,7 +6,7 @@ from machineconfig.utils.terminal import Response, MACHINE
|
|
|
6
6
|
from machineconfig.utils.accessories import pprint
|
|
7
7
|
|
|
8
8
|
UV_RUN_CMD = "$HOME/.local/bin/uv run"
|
|
9
|
-
MACHINECONFIG_VERSION = "machineconfig>=
|
|
9
|
+
MACHINECONFIG_VERSION = "machineconfig>=6.25"
|
|
10
10
|
DEFAULT_PICKLE_SUBDIR = "tmp_results/tmp_scripts/ssh"
|
|
11
11
|
|
|
12
12
|
|
|
@@ -18,17 +18,14 @@ machineconfig/cluster/sessions_managers/wt_local.py,sha256=6XQL4J1QJlqVyvvTkPASJ
|
|
|
18
18
|
machineconfig/cluster/sessions_managers/wt_local_manager.py,sha256=B7qpdRakeS1XFx4_xapIekii2B_2Nm8XHMvNWlcr7uk,24370
|
|
19
19
|
machineconfig/cluster/sessions_managers/wt_remote.py,sha256=yofv3Zlj2aClDUKYhUJVyvO-Wh76Wka71n-DY1ODj0Q,9072
|
|
20
20
|
machineconfig/cluster/sessions_managers/wt_remote_manager.py,sha256=wxfZPJd4_21LAEoaf1kVDIyhUOYlJfWfNfFvlCOPLqo,20303
|
|
21
|
-
machineconfig/cluster/sessions_managers/zellij_local.py,sha256=
|
|
22
|
-
machineconfig/cluster/sessions_managers/zellij_local_manager.py,sha256=
|
|
21
|
+
machineconfig/cluster/sessions_managers/zellij_local.py,sha256=eI3nLzlg1lrKDBu-RscTUEAvsJVRd06TrcdVABNgVu4,10076
|
|
22
|
+
machineconfig/cluster/sessions_managers/zellij_local_manager.py,sha256=YJVhBTWh4FVduvnysMeka_uQ7cckRTLpMrBx5O386zs,17701
|
|
23
23
|
machineconfig/cluster/sessions_managers/zellij_remote.py,sha256=siLNW7DohSMjDGmhTeNGU8xpb1XM4NFvmkzaa3NyZbc,8533
|
|
24
24
|
machineconfig/cluster/sessions_managers/zellij_remote_manager.py,sha256=xzih0y8_1vMH58kMQE2oFj5sdjDM8lWhe5lbz0U9hZo,8417
|
|
25
|
-
machineconfig/cluster/sessions_managers/helpers/
|
|
26
|
-
machineconfig/cluster/sessions_managers/helpers/
|
|
27
|
-
machineconfig/cluster/sessions_managers/
|
|
28
|
-
machineconfig/cluster/sessions_managers/
|
|
29
|
-
machineconfig/cluster/sessions_managers/utils/enhanced_command_runner.py,sha256=3vcQVg-HHa_WTxBGPtKMAdoSqJVa2EO5KAtrY8a6I3c,5264
|
|
30
|
-
machineconfig/cluster/sessions_managers/utils/load_balancer.py,sha256=q9k3ofvgcZzx_oKtaymWf75JpDAs5pagwRRYzfVgu30,3176
|
|
31
|
-
machineconfig/cluster/sessions_managers/utils/load_balancer_helper.py,sha256=i5TRittC1IWTgMZNyG8AR5qq-3WrGp3xgIx2m5ktT7g,7526
|
|
25
|
+
machineconfig/cluster/sessions_managers/helpers/enhanced_command_runner.py,sha256=3vcQVg-HHa_WTxBGPtKMAdoSqJVa2EO5KAtrY8a6I3c,5264
|
|
26
|
+
machineconfig/cluster/sessions_managers/helpers/load_balancer_helper.py,sha256=i5TRittC1IWTgMZNyG8AR5qq-3WrGp3xgIx2m5ktT7g,7526
|
|
27
|
+
machineconfig/cluster/sessions_managers/utils/load_balancer.py,sha256=Y4RQmhROY6o7JXSJXRrBTkoAuEmu1gvmvN_7JKPw5sc,3178
|
|
28
|
+
machineconfig/cluster/sessions_managers/utils/maker.py,sha256=WyNNAXJjNHNyEMCkppTmCx7ZnxnuzzIzvlYrWG46wIg,1984
|
|
32
29
|
machineconfig/cluster/sessions_managers/wt_utils/layout_generator.py,sha256=OA50j16uUS9ZTjL38TLuR3jufIOln_EszMZpbWyejTo,6972
|
|
33
30
|
machineconfig/cluster/sessions_managers/wt_utils/process_monitor.py,sha256=Mitm7mKiKl5lT0OiEUHAqVg2Q21RjsKO1-hpJTHJ5lM,15196
|
|
34
31
|
machineconfig/cluster/sessions_managers/wt_utils/remote_executor.py,sha256=lApUy67_WhfaBXqt0meZSx_QvwiXjN0YLdyE3c7kP_s,6744
|
|
@@ -41,6 +38,10 @@ machineconfig/cluster/sessions_managers/zellij_utils/process_monitor.py,sha256=R
|
|
|
41
38
|
machineconfig/cluster/sessions_managers/zellij_utils/remote_executor.py,sha256=IMaoZ4nczs5XwPTObXno6mu0x7es4yNa9cAi4u6GkEU,2601
|
|
42
39
|
machineconfig/cluster/sessions_managers/zellij_utils/session_manager.py,sha256=7JLq8HY-NWbJfzHfxaok_o1KrIwzMCK_PUnsdZYfzuA,4929
|
|
43
40
|
machineconfig/cluster/sessions_managers/zellij_utils/status_reporter.py,sha256=Tlq8liGIs1wCOu6JOk2VUAVCaTzQmbyITSVZMMWvlwA,3830
|
|
41
|
+
machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_helper.py,sha256=B7RXw1j31evmdYciU3CP3Jdb8A87eUeqV-JAwVQTN5E,14822
|
|
42
|
+
machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_helper_restart.py,sha256=QWmzc3REhW41FwUyyguyfpBjCvkKyN0M-srCpMVZgbw,3259
|
|
43
|
+
machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_helper_with_panes.py,sha256=KkGh_9i4ViEQ3Jxxpbbqk0AWHTN8omjeJTids9ANpeg,9033
|
|
44
|
+
machineconfig/cluster/sessions_managers/zellij_utils/zellij_local_manager_helper.py,sha256=5R_89zk5TYBGtwD-aq-ZW65FRQZr4S_0VnwyQknJLwg,7558
|
|
44
45
|
machineconfig/cluster/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
46
|
machineconfig/cluster/templates/cli_trogon.py,sha256=PFWGy8SFYIhT9r3ZV4oIEYfImsQwzAHH_04stPuV5bY,647
|
|
46
47
|
machineconfig/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -121,13 +122,13 @@ machineconfig/scripts/linux/other/switch_ip,sha256=NQfeKMBSbFY3eP6M-BadD-TQo5qMP
|
|
|
121
122
|
machineconfig/scripts/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
122
123
|
machineconfig/scripts/python/agents.py,sha256=f5UxgXjGlEypoNFqK0uHKO0UkbV_wUmPiPzotL2yapM,10677
|
|
123
124
|
machineconfig/scripts/python/cloud.py,sha256=ubLmf06FSdi1NawpQDgUDAtYb9cZSQqHbSUHzAwRIas,1199
|
|
124
|
-
machineconfig/scripts/python/croshell.py,sha256=
|
|
125
|
+
machineconfig/scripts/python/croshell.py,sha256=UwDHtEiJZx1p1nONYRZhFLY2xX3YtTVYWzsFKG61PuY,7083
|
|
125
126
|
machineconfig/scripts/python/devops.py,sha256=FjsUBr8mFBTgjtesAiRaBXYpWWHqAxcMC6Naka8HTFk,2175
|
|
126
127
|
machineconfig/scripts/python/devops_navigator.py,sha256=4O9_-ACeP748NcMjWQXZF7mBQpMPxqCGhLvPG3DMi4Q,236
|
|
127
128
|
machineconfig/scripts/python/entry.py,sha256=Az7dK1eXHGW5l46Yg10Cd88VChCdhvLAzO3e1A3r56A,2176
|
|
128
129
|
machineconfig/scripts/python/fire_jobs.py,sha256=O5DrckUGLxGblOcLf_iXU31pmCSpTg-c0hQZxQKD1os,13591
|
|
129
130
|
machineconfig/scripts/python/ftpx.py,sha256=UBDP6IIfWkaML1uZT1FrfGUUy_Of5LI82IdqEzo05_U,9760
|
|
130
|
-
machineconfig/scripts/python/interactive.py,sha256=
|
|
131
|
+
machineconfig/scripts/python/interactive.py,sha256=GtjJHtNm9qY5b4pm6tPDUweFQIlI6nd0ywlBGE94gEc,11820
|
|
131
132
|
machineconfig/scripts/python/sessions.py,sha256=l0NhO8kLtpDHdvNTlZ-Stt0VqARZqKUqiJlKvGIqCC0,9778
|
|
132
133
|
machineconfig/scripts/python/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
133
134
|
machineconfig/scripts/python/ai/generate_files.py,sha256=VfjKdwgF8O6E4oiRtfWNliibLmmwGe7f9ld6wpOsXTw,14498
|
|
@@ -173,12 +174,12 @@ machineconfig/scripts/python/croshell_helpers/start_slidev.py,sha256=HfJReOusTPh
|
|
|
173
174
|
machineconfig/scripts/python/croshell_helpers/viewer.py,sha256=heQNjB9fwn3xxbPgMofhv1Lp6Vtkl76YjjexWWBM0pM,2041
|
|
174
175
|
machineconfig/scripts/python/croshell_helpers/viewer_template.py,sha256=ve3Q1-iKhCLc0VJijKvAeOYp2xaFOeIOC_XW956GWCc,3944
|
|
175
176
|
machineconfig/scripts/python/devops_helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
|
-
machineconfig/scripts/python/devops_helpers/cli_config.py,sha256=
|
|
177
|
+
machineconfig/scripts/python/devops_helpers/cli_config.py,sha256=JF3khAkrYcUNdF6mbAva-PB93w7qaiyk4eMrLkPH4a8,5402
|
|
177
178
|
machineconfig/scripts/python/devops_helpers/cli_config_dotfile.py,sha256=rjTys4FNf9_feP9flWM7Zvq17dxWmetSiGaHPxp25nk,2737
|
|
178
179
|
machineconfig/scripts/python/devops_helpers/cli_data.py,sha256=2OWwp86-ncpGoSP9IblW7Jjej-wc-PuS8KRZ5xh0l1c,1774
|
|
179
180
|
machineconfig/scripts/python/devops_helpers/cli_nw.py,sha256=nI_zmcmUvijVeXIWT2dN5onoy3ou-lub1cL-SJImmDA,4125
|
|
180
181
|
machineconfig/scripts/python/devops_helpers/cli_repos.py,sha256=Y5HgbNUyt7iehXyfmqPjVVjCsbZI-1Q6w1XwKQb_FkU,12331
|
|
181
|
-
machineconfig/scripts/python/devops_helpers/cli_self.py,sha256=
|
|
182
|
+
machineconfig/scripts/python/devops_helpers/cli_self.py,sha256=Y0YQOcNc9nCfQptQxj8qDHUdEBIbEyLYg8Mmir9vw_Y,5739
|
|
182
183
|
machineconfig/scripts/python/devops_helpers/cli_share_server.py,sha256=q9pFJ6AxPuygMr3onMNOKEuuQHbVE_6Qoyo7xRT5FX0,4196
|
|
183
184
|
machineconfig/scripts/python/devops_helpers/cli_terminal.py,sha256=k_PzXaiGyE0vXr0Ii1XcJz2A7UvyPJrR31TRWt4RKRI,6019
|
|
184
185
|
machineconfig/scripts/python/devops_helpers/devops_backup_retrieve.py,sha256=8VpnWytbJYdZZfeLmULgGeGuV5BlHrzdcbGtSsmU-EA,5598
|
|
@@ -218,7 +219,7 @@ machineconfig/scripts/python/helpers_fire_command/fire_jobs_args_helper.py,sha25
|
|
|
218
219
|
machineconfig/scripts/python/helpers_fire_command/fire_jobs_route_helper.py,sha256=4MrlCVijbx7GQyAN9s5LDh-7heSjMXYrXdqiP6uC3ug,5378
|
|
219
220
|
machineconfig/scripts/python/helpers_fire_command/fire_jobs_streamlit_helper.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
220
221
|
machineconfig/scripts/python/helpers_repos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
221
|
-
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=
|
|
222
|
+
machineconfig/scripts/python/helpers_repos/cloud_repo_sync.py,sha256=oAkOu0HCxCf-_Fxrp15R1eg8zXwJVRub2Oa1rh2jFvw,9700
|
|
222
223
|
machineconfig/scripts/python/helpers_repos/grource.py,sha256=zDKWAO24aA0HlpcKFgBH4Lh_eqWp9KTEqnbUnX6I2pk,14611
|
|
223
224
|
machineconfig/scripts/python/helpers_repos/secure_repo.py,sha256=fW_GyHqWrpnf7nexHojfWHv4eLBa71IhVL_LSVMyGnE,1115
|
|
224
225
|
machineconfig/scripts/python/nw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -226,7 +227,7 @@ machineconfig/scripts/python/nw/add_ssh_key.py,sha256=9JLmWu8pE7PAL5VuCFd19iVEdC
|
|
|
226
227
|
machineconfig/scripts/python/nw/devops_add_identity.py,sha256=aPjcHbTLhxYwWYcandyAHdwuO15ZBu3fB82u6bI0tMQ,3773
|
|
227
228
|
machineconfig/scripts/python/nw/devops_add_ssh_key.py,sha256=CkIl85hZLtG9k7yXLSzqi88YrilHV4hIUWHAPBwxWjw,8922
|
|
228
229
|
machineconfig/scripts/python/nw/mount_drive,sha256=zemKofv7hOmRN_V3qK0q580GkfWw3VdikyVVQyiu8j8,3514
|
|
229
|
-
machineconfig/scripts/python/nw/mount_nfs,sha256=
|
|
230
|
+
machineconfig/scripts/python/nw/mount_nfs,sha256=Izm5dCSGrgTT3UUinn0lMwFmssZtLAEve-mB5mnVQQI,1855
|
|
230
231
|
machineconfig/scripts/python/nw/mount_nfs.py,sha256=lOMDY4RS7tx8gsCazVR5tNNwFbaRyO2PJlnwBCDQgCM,3573
|
|
231
232
|
machineconfig/scripts/python/nw/mount_nw_drive,sha256=BqjGBCbwe5ZAsZDO3L0zHhh_gJfZy1CYOcqXA4Y-WkQ,2262
|
|
232
233
|
machineconfig/scripts/python/nw/mount_nw_drive.py,sha256=iru6AtnTyvyuk6WxlK5R4lDkuliVpPV5_uBTVVhXtjQ,1550
|
|
@@ -240,7 +241,7 @@ machineconfig/scripts/python/nw/wsl_windows_transfer.py,sha256=1ab9l-8MtAxofW5nG
|
|
|
240
241
|
machineconfig/scripts/python/repos_helpers/action.py,sha256=pl0U53FAGoH2yk-CGNIy3aggImXY5ZVz28-XVFHDvfA,14862
|
|
241
242
|
machineconfig/scripts/python/repos_helpers/clone.py,sha256=UULEG5xJuXlPGU0nqXH6U45jA9DOFqLw8B4iPytCwOQ,5471
|
|
242
243
|
machineconfig/scripts/python/repos_helpers/count_lines.py,sha256=Q5c7b-DxvTlQmljoic7niTuiAVyFlwYvkVQ7uRJHiTo,16009
|
|
243
|
-
machineconfig/scripts/python/repos_helpers/count_lines_frontend.py,sha256=
|
|
244
|
+
machineconfig/scripts/python/repos_helpers/count_lines_frontend.py,sha256=4-SmgwY7VMevUeG6UBvmw1C-nkYxcgsj5_O9HyoImwA,607
|
|
244
245
|
machineconfig/scripts/python/repos_helpers/entrypoint.py,sha256=UagEar85QCAXX7oOqJjDJp2Vds5UQxehYPmckL_S0oI,2836
|
|
245
246
|
machineconfig/scripts/python/repos_helpers/record.py,sha256=FQo0swuJZOp0I2XGK-t1OQU4zJHmQ2z9zTpDD30Tmg4,11001
|
|
246
247
|
machineconfig/scripts/python/repos_helpers/sync.py,sha256=CLLWy2n2gY9beXPF-mblOQ6R7cKoenkJjMiX7tHQsBk,3091
|
|
@@ -253,7 +254,7 @@ machineconfig/scripts/windows/fzfrga.bat,sha256=rU_KBMO6ii2EZ0akMnmDk9vpuhKSUZqk
|
|
|
253
254
|
machineconfig/scripts/windows/mounts/mount_nfs.ps1,sha256=XrAdzpxE6a4OccSmWJ7YWHJTnsZK8uXnFE5j9GOPA20,2026
|
|
254
255
|
machineconfig/scripts/windows/mounts/mount_nw.ps1,sha256=puxcfZc3ZCJerm8pj8OZGVoTYkhzp-h7oV-MrksSqIE,454
|
|
255
256
|
machineconfig/scripts/windows/mounts/mount_smb.ps1,sha256=PzYWpIO9BpwXjdWlUQL9pnMRnOGNSkxfh4bHukJFme8,69
|
|
256
|
-
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=
|
|
257
|
+
machineconfig/scripts/windows/mounts/mount_ssh.ps1,sha256=01qca_7zAQkQx2l1vs-RUCHa-FJ-aqumm40vxKAHuz8,322
|
|
257
258
|
machineconfig/scripts/windows/mounts/share_cloud.cmd,sha256=exD7JCdxw2LqVjw2MKCYHbVZlEqmelXtwnATng-dhJ4,1028
|
|
258
259
|
machineconfig/scripts/windows/mounts/share_smb.ps1,sha256=U7x8ULYSjbgzTtiHNSKQuTaZ_apilDvkGV5Xm5hXk5M,384
|
|
259
260
|
machineconfig/scripts/windows/mounts/unlock_bitlocker.ps1,sha256=Wv-SLscdckV-1mG3p82VXKPY9zW3hgkRmcLUXIZ1daE,253
|
|
@@ -368,7 +369,7 @@ machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh,sha256=F5dbg0n9RHsKG
|
|
|
368
369
|
machineconfig/setup_linux/ssh/openssh_all.sh,sha256=3dg6HEUFbHQOzLfSAtzK_D_GB8rGCCp_aBnxNdnidVc,824
|
|
369
370
|
machineconfig/setup_linux/ssh/openssh_wsl.sh,sha256=1eeRGrloVB34K5z8yWVUMG5b9pV-WBfHgV9jqXiYgCQ,1398
|
|
370
371
|
machineconfig/setup_linux/web_shortcuts/android.sh,sha256=gzep6bBhK7FCBvGcXK0fdJCtkSfBOftt0aFyDZq_eMs,68
|
|
371
|
-
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=
|
|
372
|
+
machineconfig/setup_linux/web_shortcuts/interactive.sh,sha256=7tK6S4uSoQ7SyVz60G7gYJqMR8t418h3mddk2ZAxkwg,442
|
|
372
373
|
machineconfig/setup_windows/__init__.py,sha256=NnSVZkIBoxoMgkj-_KAqGonH3YziBIWXOKDEcmNAGTY,386
|
|
373
374
|
machineconfig/setup_windows/apps.ps1,sha256=dmZQZD4ZlNZo9jYkjIS3ag4qDAYZvaLysjmo9ELwBA4,11218
|
|
374
375
|
machineconfig/setup_windows/uv.ps1,sha256=ukk1Abh-q-RfpoEqI2XTE2dcQJmHk0VFF6WqkK3TW8Q,350
|
|
@@ -378,7 +379,7 @@ machineconfig/setup_windows/others/power_options.ps1,sha256=c7Hn94jBD5GWF29CxMhm
|
|
|
378
379
|
machineconfig/setup_windows/ssh/add-sshkey.ps1,sha256=qfPdqCpd9KP3VhH4ifsUm1Xvec7c0QVl4Wt8JIAm9HQ,1653
|
|
379
380
|
machineconfig/setup_windows/ssh/add_identity.ps1,sha256=b8ZXpmNUSw3IMYvqSY7ClpdWPG39FS7MefoWnRhWN2U,506
|
|
380
381
|
machineconfig/setup_windows/ssh/openssh-server.ps1,sha256=OMlYQdvuJQNxF5EILLPizB6BZAT3jAmDsv1WcVVxpFQ,2529
|
|
381
|
-
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=
|
|
382
|
+
machineconfig/setup_windows/web_shortcuts/interactive.ps1,sha256=DDfrT1XKLqIq3WPmufqImUINZ_m6pM5FGFGflKfv6Ds,548
|
|
382
383
|
machineconfig/setup_windows/wt_and_pwsh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
383
384
|
machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py,sha256=ogxJnwpdcpH7N6dFJu95UCNoGYirZKQho_3X0F_hmXs,6791
|
|
384
385
|
machineconfig/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -396,7 +397,7 @@ machineconfig/utils/procs.py,sha256=rw8LR8MjGgvtrpcgxb3hudq2B9fkkpYUXe9x5-FgHuc,
|
|
|
396
397
|
machineconfig/utils/scheduler.py,sha256=jZ_1yghqA3-aINPRmE_76gboqJc0UElroR7urNOfXKs,14940
|
|
397
398
|
machineconfig/utils/scheduling.py,sha256=RF1iXJpqf4Dg18jdZWtBixz97KAHC6VKYqTFSpdLWuc,11188
|
|
398
399
|
machineconfig/utils/source_of_truth.py,sha256=ZAnCRltiM07ig--P6g9_6nEAvNFC4X4ERFTVcvpIYsE,764
|
|
399
|
-
machineconfig/utils/ssh.py,sha256=
|
|
400
|
+
machineconfig/utils/ssh.py,sha256=dO-FereJBh5mB4zmL_fDIfQ6VVCWpJ3Y8IoAJ5SA4zQ,39079
|
|
400
401
|
machineconfig/utils/terminal.py,sha256=IlmOByfQG-vjhaFFxxzU5rWzP5_qUzmalRfuey3PAmc,11801
|
|
401
402
|
machineconfig/utils/tst.py,sha256=6u1GI49NdcpxH2BYGAusNfY5q9G_ytCGVzFM5b6HYpM,674
|
|
402
403
|
machineconfig/utils/upgrade_packages.py,sha256=H96zVJEWXJW07nh5vhjuSCrPtXGqoUb7xeJsFYYdmCI,3330
|
|
@@ -421,8 +422,8 @@ machineconfig/utils/schemas/installer/installer_types.py,sha256=QClRY61QaduBPJoS
|
|
|
421
422
|
machineconfig/utils/schemas/layouts/layout_types.py,sha256=TcqlZdGVoH8htG5fHn1KWXhRdPueAcoyApppZsPAPto,2020
|
|
422
423
|
machineconfig/utils/schemas/repos/repos_types.py,sha256=ECVr-3IVIo8yjmYmVXX2mnDDN1SLSwvQIhx4KDDQHBQ,405
|
|
423
424
|
machineconfig/utils/ssh_utils/utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
424
|
-
machineconfig-6.
|
|
425
|
-
machineconfig-6.
|
|
426
|
-
machineconfig-6.
|
|
427
|
-
machineconfig-6.
|
|
428
|
-
machineconfig-6.
|
|
425
|
+
machineconfig-6.26.dist-info/METADATA,sha256=0XoRmg0AKw7oB6ZKQ26G_YYWH0Afvps5VpvJPS0lTQk,3012
|
|
426
|
+
machineconfig-6.26.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
427
|
+
machineconfig-6.26.dist-info/entry_points.txt,sha256=M0jwN_brZdXWhmNVeXLvdKxfkv8WhhXFZYcuKBA9qnk,418
|
|
428
|
+
machineconfig-6.26.dist-info/top_level.txt,sha256=porRtB8qms8fOIUJgK-tO83_FeH6Bpe12oUVC670teA,14
|
|
429
|
+
machineconfig-6.26.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/machineconfig/cluster/sessions_managers/{helpers → zellij_utils}/zellij_local_helper_restart.py
RENAMED
|
File without changes
|
/machineconfig/cluster/sessions_managers/{helpers → zellij_utils}/zellij_local_manager_helper.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|